@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: auto;
  height: 100%;
}

body {
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

ul, ol {
  list-style: none;
  margin-bottom: 0px;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font-heading: Space Grotesk, sans-serif;
  --font-body: Inter, sans-serif;
  --font-mono: JetBrains Mono, monospace;
  --color-text: #e9f8fb;
  --color-bg: #0a0e1a;
  --color-accent: #3ee9ef;
  --lh-tight: 1.1;
  --lh-base: 1.5;
  --lh-relaxed: 1.6;
  --lh-loose: 1.8;
  --vh: 1vh;
  --sb-width: 4px;
}

body {
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  touch-action: manipulation;
}
body.is-locked {
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
}
body.is-mouse {
  --sb-width: 4px;
}

/* 1. 捲軸整體尺寸 */
::-webkit-scrollbar {
  width: var(--sb-width);
  height: var(--sb-width);
}

/* 2. 捲軸軌道 (Track) - 融入你網站的深色科技背景 */
::-webkit-scrollbar-track {
  background-color: #070b15;
  border-radius: 2px;
}

/* 3. 捲軸滑塊 (Thumb) - 預設狀態使用主色 $color-accent */
::-webkit-scrollbar-thumb {
  background-color: #3ee9ef;
  border-radius: 2px;
  border: 0px solid transparent;
  background-clip: padding-box;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
  /* 4. 滑鼠懸停在滑塊上 (Hover) - 稍微加深成更飽和的青藍色 */
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(169, 252, 255, 0.5);
}
::-webkit-scrollbar-thumb {
  /* 5. 點擊並拖拽滑塊時 (Active) - 顏色再深一點，給予明確的點擊反饋 */
}
::-webkit-scrollbar-thumb:active {
  background-color: rgba(169, 252, 255, 0.5);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(169, 252, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(169, 252, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgb(13, 10, 41) 0%, rgb(0, 3, 8) 30%, rgb(0, 3, 8) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all ease 200ms;
}

p {
  line-height: var(--lh-loose);
  margin-bottom: 0;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all ease 200ms;
}

:focus-visible {
  outline: 2px solid #3ee9ef;
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

svg {
  fill: currentColor;
}

input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 1;
}

textarea {
  resize: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=checkbox],
input[type=radio],
input[type=submit],
input[type=button] {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(62, 233, 239, 0.25) 0%, rgba(62, 233, 239, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.animation__el {
  transition: all 1s ease-in-out;
}
.animation__el.in img {
  display: block;
}
.animation__el img {
  display: none;
}
.animation__el.fade-down {
  transform: translateY(-15px);
  opacity: 0;
}
.animation__el.fade-down.in {
  transform: translateY(0);
  opacity: 1;
}
.animation__el.fade-up {
  transform: translateY(30px);
  opacity: 0;
}
.animation__el.fade-up.in {
  transform: translateY(0);
  opacity: 1;
}
.animation__el.fade-in {
  opacity: 0;
}
.animation__el.fade-in.in {
  opacity: 1;
}
.animation__el.fade-left {
  transform: translate(-30px);
  opacity: 0;
}
.animation__el.fade-left.in {
  transform: translateX(0);
  opacity: 1;
}
.animation__el.fade-right {
  transform: translateX(30px);
  opacity: 0;
}
.animation__el.fade-right.in {
  transform: translateX(0);
  opacity: 1;
}
.animation__el.fade-up-rotate {
  transform: translateY(5px) rotate(10deg);
  transform-origin: 0 0;
  opacity: 0;
}
.animation__el.fade-up-rotate.in {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}
.animation__el.fade-in-scale img {
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transform-origin: 100% 0;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1), opacity 3s ease;
}
.animation__el.fade-in-scale.in img {
  transform: scale(1);
  opacity: 1;
}
.animation__el.blur {
  filter: blur(12px);
}
.animation__el.blur.in {
  filter: blur(0);
}
.animation__el.delay__300 {
  transition-delay: 300ms;
}
.animation__el.delay__600 {
  transition-delay: 600ms;
}
.animation__el.delay__900 {
  transition-delay: 900ms;
}
.animation__el.delay__1200 {
  transition-delay: 1200ms;
}
.animation__el.delay__1500 {
  transition-delay: 1500ms;
}

.page-title__dec-line {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e9f8fb;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .page-title__dec-line {
    font-size: 2.25rem;
  }
}
.page-title__dec-line.-center {
  display: flex;
  justify-content: center;
}
.page-title__dec-line.-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.page-title__dec-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 2px;
  background-color: rgba(169, 252, 255, 0.3);
}

.page-desc {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e9f8fb;
  margin-bottom: 40px;
  max-width: 1076px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .page-desc {
    font-size: 1rem;
  }
}
.page-desc.-center {
  max-width: none;
  text-align: center;
  margin: 0 auto 20px;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-eyebrow__num {
  color: #3ee9ef;
}
.about-eyebrow__label {
  color: #a3B5bd;
}

.empty-share {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 48px 24px;
  margin-bottom: 64px;
}
.empty-share__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  margin-bottom: 12px;
}
.empty-share__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.empty-share__desc {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.empty-share__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #3ee9ef;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  overflow: hidden;
  transition: all ease 200ms;
}
.empty-share__btn::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: all ease 500ms;
}
.empty-share__btn:hover > div {
  margin-left: 0;
}
.empty-share__btn:hover > svg {
  transform: scale(0);
  transform-origin: 100% 50%;
  margin-right: -20px;
}
.empty-share__btn:hover::after {
  width: 100%;
}
.empty-share__btn > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-left: -20px;
  transition: all ease 500ms;
}
.empty-share__btn svg {
  width: 10px;
  transition: all ease 500ms;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 104px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(62, 233, 239, 0.08) 0%, rgba(6, 13, 20, 0.08) 50%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: all ease 500ms;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header {
    height: 64px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .header__inner {
    padding-inline: 20px;
  }
}
.header__inner nav {
  height: 100%;
}
.header__logo {
  width: 93px;
  max-height: 64.4%;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__logo {
    width: auto;
    height: 44px;
  }
  .header__logo img {
    height: 44px;
    margin-bottom: -4px;
  }
}
.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-item--open .header__nav-link {
  opacity: 1;
}
.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #e9f8fb;
  opacity: 0.6;
  border-radius: 4px;
  cursor: pointer;
  transition: all ease 200ms;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -3px;
  width: 0px;
  height: 1px;
  background-color: #3ee9ef;
}
.header__nav-link:hover {
  opacity: 1;
}
.header__nav-link:hover::after {
  width: 100%;
  transition: all 0.5s ease;
}
.header__nav-link-icon {
  position: relative;
  width: 24px;
  height: 24px;
}
.header__nav-link-icon::before, .header__nav-link-icon::after {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #e9f8fb;
  opacity: 0.6;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.header__nav-link-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.header__nav-item--open .header__nav-link-icon::before {
  content: none;
}
.header__nav-item--open .header__nav-link-icon::after {
  width: 8px;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(180deg);
}
.header__dropdown {
  position: absolute;
  top: calc(100% - 15px);
  left: 50%;
  min-width: 250px;
  border: 1px solid rgba(233, 248, 251, 0.2);
  border-radius: 16px;
  background: rgba(36, 36, 36, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
  z-index: 100;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.05), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
}
.header__nav-item--open > .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0s;
}
.header__dropdown-link {
  display: block;
  padding: 10px 0px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #e9f8fb;
  opacity: 0.6;
  transition: opacity 0.18s ease;
}
.header__dropdown-link:hover {
  opacity: 1;
}
.header__dropdown-link--blue {
  color: #5d6e76;
}
.header__media-sm {
  display: none;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__media-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__media-sm {
    gap: 16px;
  }
}
.header__register-button {
  width: 177px;
  height: 64px;
  display: none;
  background-color: #3ee9ef;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #000308;
  border-radius: 9999px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__register-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__register-button {
    width: 127px;
    height: 44px;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: rgb(6, 13, 20);
  border-radius: 50%;
  box-shadow: -1px -1px 1px hsla(0, 0%, 100%, 0.2), 1px 1px 1px hsla(0, 0%, 100%, 0.1);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__hamburger {
    width: 44px;
    height: 44px;
    gap: 5px;
  }
}
.header__hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #e9f8fb;
  border-radius: 9999px;
  transition: all 0.25s ease;
  transform-origin: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__hamburger span {
    width: 18px;
    height: 1px;
  }
}
.header__hamburger span:nth-child(2) {
  opacity: 0.8;
}
.header__hamburger span:nth-child(3) {
  opacity: 0.5;
}
.header__hamburger:hover span {
  opacity: 1;
}
.header__hamburger--open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__hamburger--open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
}
.header__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  opacity: 1;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__hamburger--open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.header__mobile-drawer {
  position: fixed;
  top: 102px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(169, 252, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(169, 252, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header__mobile-drawer::-webkit-scrollbar {
  display: none;
}
.header__mobile-drawer {
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 1280px) {
  .header__mobile-drawer {
    display: none;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__mobile-drawer {
    top: 63px;
  }
}
.header__mobile-drawer--open {
  opacity: 1;
  pointer-events: auto;
}
.header__mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__mobile-inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__mobile-inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .header__mobile-inner {
    padding-inline: 20px;
  }
}
.header__mobile-inner {
  padding-top: 100px;
  padding-bottom: 48px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .header__mobile-inner {
    padding-top: 50px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .header__mobile-inner {
    padding-top: 25px;
  }
}
.header__mobile-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .header__mobile-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__mobile-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.header__mobile-col-heading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3ee9ef;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  padding: 20px 0px;
  margin-bottom: 24px;
}
.header__mobile-col-list {
  display: flex;
  flex-direction: column;
}
.header__mobile-col-list > li {
  padding: 10px 0px;
}
.header__mobile-col-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #e9f8fb;
  transition: all ease 200ms;
}
.header__mobile-col-link:hover {
  color: #e9f8fb;
}
.header__mobile-col-link--blue {
  color: #5d6e76;
}
.header__mobile-footer {
  display: none;
  align-items: center;
  margin-top: 50px;
  padding-top: 40px;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #e9f8fb;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .header__mobile-footer {
    font-size: 0.9375rem;
  }
}
.header__mobile-footer-date {
  position: relative;
  padding-right: 26px;
  margin-right: 26px;
  color: #e9f8fb;
}
.header__mobile-footer-date::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: rgba(62, 233, 239, 0.5);
}

.footer {
  position: relative;
  z-index: 0;
  background: #070b15;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 64px 0 32px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .footer {
    padding: 32px 0;
  }
}
.footer__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .footer__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .footer__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .footer__inner {
    padding-inline: 20px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .footer__main {
    justify-content: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .footer__main {
    gap: 32px;
  }
}
.footer__brand img {
  width: 93px;
}
.footer__nav-columns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .footer__nav-columns {
    gap: 32px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .footer__nav-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .footer__nav-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .footer__nav-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
.footer__col-heading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 3.25px;
  text-transform: uppercase;
  color: #5d6e76;
  margin-bottom: 16px;
}
.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-link {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3B5bd;
  transition: all ease 200ms;
}
.footer__col-link:hover {
  color: #e9f8fb;
}
.footer__col-link--muted {
  color: #5d6e76;
}
.footer__contact {
  font-style: normal;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .footer__contact {
    grid-column: 1/-1;
  }
}
.footer__contact-heading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 3.25px;
  text-transform: uppercase;
  color: #5d6e76;
  margin-bottom: 16px;
}
.footer__contact-email {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  color: #a3B5bd;
  display: block;
  margin-bottom: 8px;
  transition: all ease 200ms;
}
.footer__contact-email:hover {
  color: #e9f8fb;
}
.footer__contact-venue {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  color: #a3B5bd;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer__date-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5d6e76;
  margin-bottom: 6px;
}
.footer__date-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e9f8fb;
}
.footer__bottom {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.footer__copy, .footer__tagline {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5d6e76;
}

.editor h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-top: 20px;
  margin-bottom: 20px;
}
.editor h2:first-child {
  margin-top: 0;
}
.editor h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #e9f8fb;
  margin-top: 20px;
  margin-bottom: 20px;
}
.editor h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e9f8fb;
  margin-top: 20px;
  margin-bottom: 20px;
}
.editor h5 {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  white-space: nowrap;
  margin-bottom: 2px;
}
.editor h6 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a3B5bd;
  margin-top: 2px;
  line-height: 1.5;
}
.editor p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #e9f8fb;
  margin-bottom: 20px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .editor p {
    font-size: 1rem;
  }
}
.editor p:last-child {
  margin-bottom: 0;
}
.editor ul, .editor ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 26px;
}
.editor ul li, .editor ol li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e9f8fb;
}
.editor ul li::before, .editor ol li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #3ee9ef;
  border-radius: 50%;
}
.editor ol {
  list-style-type: decimal;
}
.editor ol li::before {
  content: none;
}
.editor ol li::marker {
  color: #3ee9ef;
}
.editor blockquote {
  position: relative;
  margin: 32px 0;
  padding: 24px 32px;
  background: rgba(14, 26, 36, 0.5);
  border-left: 3px solid #3ee9ef;
  border-radius: 0 14px 14px 0;
}
.editor blockquote p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #e9f8fb;
  margin-bottom: 12px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .editor blockquote p {
    font-size: 1rem;
  }
}
.editor blockquote p:last-of-type {
  margin-bottom: 0;
}
.editor blockquote cite {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a3B5bd;
  font-style: normal;
}
.editor blockquote cite::before {
  content: "— ";
}
.editor img {
  width: 100%;
  border-radius: 14px;
}
.editor pre {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3ee9ef;
  letter-spacing: 3.5px;
  margin-bottom: 10px;
  white-space: break-spaces;
}
.editor .mini-table-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 64px;
}
.editor .mini-table-container:last-child {
  margin-bottom: 0;
}
.editor .mini-table-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #0A141C 100%);
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .editor .mini-table-container::after {
    content: none;
  }
}
.editor .mini-table-wrap {
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.editor .mini-table-wrap::-webkit-scrollbar {
  display: none;
}
.editor table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 14px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.editor table::-webkit-scrollbar {
  display: none;
}
.editor table thead {
  background: rgba(6, 12, 18, 0.85);
}
.editor table thead th {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a3B5bd;
  text-align: left;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .editor table thead th {
    width: 430px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .editor table thead th {
    padding: 16px 20px;
  }
}
.editor table tbody th {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: #a3B5bd;
  white-space: nowrap;
  text-align: left;
  padding: 24px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .editor table tbody th {
    padding: 12px;
  }
}
.editor table tr {
  background: rgba(14, 26, 36, 0.5);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.editor table tr:last-child {
  border-bottom: none;
}
.editor table td {
  padding: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #e9f8fb;
  vertical-align: middle;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .editor table td {
    padding: 12px;
    font-size: 1rem;
  }
}

.navigation {
  position: sticky;
  top: 103px;
  left: 0;
  z-index: 199;
  width: 100%;
  height: 55px;
  background-color: rgba(14, 26, 36, 0.5);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .navigation {
    top: 63px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .navigation {
    height: 49px;
  }
}
.navigation--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.navigation__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .navigation__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .navigation__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .navigation__inner {
    padding-inline: 20px;
  }
}
.navigation .symposium-nav__tabs {
  border-bottom: none;
}
.navigation .exhibitors-intro__tabs {
  border-bottom: none;
}

.page-hero {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .page-hero {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .page-hero {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .page-hero {
    padding-inline: 20px;
  }
}
.page-hero {
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .page-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.page-hero__inner {
  padding-left: 80px;
  padding-right: 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .page-hero__inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.page-hero__inner.has-chip-image {
  display: grid;
  grid-template-columns: 1fr 39.47%;
  gap: 56px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: calc(1440px - 0.02px)) {
  .page-hero__inner.has-chip-image {
    gap: 0;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .page-hero__inner.has-chip-image {
    grid-template-columns: 1fr;
  }
  .page-hero__inner.has-chip-image .page-hero__desc {
    margin-bottom: 0px;
  }
}
.page-hero__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 28px;
}
.page-hero__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #e9f8fb;
  margin-bottom: 10px;
}
@media screen and (max-width: 1700px) {
  .page-hero__title {
    font-size: clamp(48px, 5vw, 86px);
  }
}
.page-hero__desc {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e9f8fb;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .page-hero__desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .page-hero .chip-container.desktop {
    display: none;
  }
}
.page-hero .chip-container.mobile {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-hero .chip-container.mobile {
    display: none;
  }
}
.page-hero .chip-image {
  margin: 0 auto;
  aspect-ratio: 600/500;
  filter: drop-shadow(0px 0px 0px rgba(62, 233, 239, 0));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.page-hero .chip-image:hover {
  transform: rotateX(12deg) rotateY(-12deg);
  filter: drop-shadow(0px 2px 10px rgba(62, 233, 239, 0.75));
}
.page-hero .chip-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.breadcrumb {
  position: relative;
  z-index: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #a3B5bd;
}
.breadcrumb__link {
  color: #a3B5bd;
  transition: all ease 200ms;
}
.breadcrumb__link:hover {
  color: #e9f8fb;
}
.breadcrumb__current {
  color: #e9f8fb;
}

.card {
  background: #0f1420;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 24px 24px 28px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}
@media (hover: hover) {
  .card:hover {
    border-color: rgba(62, 233, 239, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(62, 233, 239, 0.08);
  }
}
.card__number {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #3ee9ef;
  margin-bottom: 12px;
}
.card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 8px;
}
.card__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #a3B5bd;
}

.c-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  height: 64px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .c-btn {
    font-size: 0.875rem;
    height: 46px;
    padding: 0 24px;
  }
}
.c-btn.-accent {
  background: #3ee9ef;
  color: #0a0e1a;
}
.c-btn.-accent.-arrow-down > div .arrow {
  transform: translateY(-50%) rotate(90deg);
}
.c-btn.-accent > div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 200ms;
}
.c-btn.-accent > div .arrow {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all ease 200ms;
}
.c-btn.-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(62, 233, 239, 0.5);
  border-radius: 9999px;
  transition: all ease 200ms;
}
.c-btn.-accent:hover {
  background: #7DFAFF;
}
.c-btn.-accent:hover > div {
  transform: translateX(15px);
}
.c-btn.-accent:hover > div .arrow {
  opacity: 1;
}
.c-btn.-accent:hover::after {
  top: -4.5px;
  left: -5px;
  right: -5px;
  bottom: -4.5px;
}
.c-btn.-transparent {
  border: 1px solid rgba(169, 252, 255, 0.3);
  color: #e9f8fb;
}
.c-btn.-transparent.-arrow-down > div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 200ms;
}
.c-btn.-transparent.-arrow-down > div .arrow {
  transform: rotate(90deg);
  margin-left: 10px;
}
.c-btn.-transparent.-between {
  justify-content: space-between;
}
.c-btn.-transparent.-animation:hover .animation-arrow span {
  animation: none;
}
.c-btn.-transparent:hover {
  border: 2px solid #3ee9ef;
  color: #3ee9ef;
}
.c-btn.-transparent:hover svg, .c-btn.-transparent:hover path {
  fill: #3ee9ef;
}
.c-btn.-transparent .animation-arrow {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 24px;
  height: 24px;
}
.c-btn.-transparent .animation-arrow span {
  display: block;
  flex-shrink: 0;
  animation: arrow-bounce 1s linear infinite;
}
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(-16px);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(16px);
    opacity: 0;
  }
}
.c-btn .arrow {
  margin-right: 10px;
}

.next-page {
  position: relative;
  display: block;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .next-page {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .next-page {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .next-page {
    padding-inline: 20px;
  }
}
.next-page {
  background: rgba(14, 26, 36, 0.5);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
.next-page:hover {
  background: rgba(14, 26, 36, 0.75);
}
.next-page:hover::after {
  transform: scaleX(1);
}
.next-page:hover .next-page__arrow {
  color: #3ee9ef;
  border-color: #3ee9ef;
  background-color: rgba(62, 233, 239, 0.1);
  transform: translateX(10px);
}
.next-page::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3ee9ef 50%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: all ease 500ms;
}
.next-page__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1680px;
  margin: 0 auto;
  padding: 64px 0;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .next-page__inner {
    padding: 32px 0;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .next-page__inner {
    padding: 24px 0;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .next-page__inner {
    padding: 20px 0;
  }
}
.next-page__meta {
  display: flex;
  flex-direction: column;
}
.next-page__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 10px;
}
.next-page__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #e9f8fb;
  text-decoration: none;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .next-page__title {
    font-size: 1.75rem;
  }
}
.next-page__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #e9f8fb;
  text-decoration: none;
  transition: all ease 500ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .next-page__arrow {
    width: 44px;
    height: 44px;
  }
}
.next-page__arrow svg {
  width: 24px;
  height: 24px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 850px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field-row.grid-type {
  grid-template-columns: 30.26% 1fr;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.field-label__required {
  color: #3ee9ef;
  margin-left: 2px;
}

.field-textarea, .field-input {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  background: #000308;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .field-textarea, .field-input {
    font-size: 1rem;
  }
}
.field-textarea::-moz-placeholder, .field-input::-moz-placeholder {
  color: #a3B5bd;
}
.field-textarea::placeholder, .field-input::placeholder {
  color: #a3B5bd;
}
.field-textarea:focus, .field-input:focus {
  border-color: #3ee9ef;
}
.is-error.field-textarea, .is-error.field-input {
  border-color: #F57;
}
.field-textarea:disabled, .field-input:disabled {
  color: #a3B5bd;
  background: rgba(0, 3, 8, 0.3);
  border-color: rgba(169, 252, 255, 0.08);
  cursor: not-allowed;
}

.field-input {
  height: 64px;
  padding: 0 16px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .field-input {
    height: 54px;
  }
}

.field-textarea {
  padding: 16px;
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.field-clearable {
  position: relative;
}
.field-clearable .field-input,
.field-clearable .field-textarea {
  padding-right: 40px;
}
.field-clearable__btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #3ee9ef;
  cursor: pointer;
  transition: all ease 200ms;
}
.field-clearable__btn--visible {
  display: flex;
}
.field-clearable--textarea .field-clearable__btn {
  top: 16px;
  transform: none;
}

.field-prompt {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #F57;
}

select.field-select {
  display: none !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 40px 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e9f8fb;
  background: rgba(0, 3, 8, 0.6);
  border: 1px solid rgba(169, 252, 255, 0.2);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .select2-container--default .select2-selection--single {
    height: 54px;
    font-size: 1rem;
  }
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #e9f8fb;
  line-height: normal;
  padding: 0;
  flex: 1;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #a3B5bd;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 100%;
  top: 0;
  right: 12px;
  border: none;
  background: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: block;
  width: 16px;
  height: 16px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%238a9ab0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
  margin-top: 0;
  transform: translateY(-50%);
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #3ee9ef;
  background: rgba(0, 3, 8, 0.8);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg) translateY(50%);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%233ee9ef' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #3ee9ef;
  background: rgba(0, 3, 8, 0.8);
}
.select2-container--default.is-error .select2-selection--single {
  border-color: #e05c73;
}
.select2-container--default.is-error .select2-selection--single .select2-selection__arrow b {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23e05c73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.select2-container--default .select2-dropdown {
  background: rgba(11, 22, 40, 0.98);
  border: 1px solid rgba(169, 252, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.select2-container--default .select2-results__options {
  padding: 8px 0;
  max-height: 240px;
}
.select2-container--default .select2-results__option {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #5d6e76;
  padding: 10px 16px;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .select2-container--default .select2-results__option {
    font-size: 1rem;
  }
}
.select2-container--default .select2-results__option--highlighted {
  background: rgba(62, 233, 239, 0.08);
  color: #e9f8fb;
}
.select2-container--default .select2-results__option--selected {
  background: rgba(62, 233, 239, 0.12);
  color: #3ee9ef;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #a3B5bd;
  cursor: not-allowed;
}
.select2-container--default .select2-search--dropdown {
  padding: 12px 12px 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e9f8fb;
  background: rgba(0, 3, 8, 0.6);
  border: 1px solid rgba(169, 252, 255, 0.2);
  border-radius: 4px;
  outline: none;
  padding: 8px 12px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: 1rem;
  }
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #3ee9ef;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-radius: 0 0 14px 14px;
  margin-top: -1px;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  margin-bottom: -1px;
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .radio-grid {
    grid-template-columns: 1fr;
  }
}

.radio-card {
  position: relative;
}
.radio-card__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5d6e76;
  background: transparent;
  border: 1px solid rgba(169, 252, 255, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all ease 200ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.radio-card__label:hover {
  border-color: rgba(169, 252, 255, 0.3);
  color: #e9f8fb;
}
.radio-card__dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  background: transparent;
  position: relative;
  transition: border-color 0.2s ease;
}
.radio-card__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 9999px;
  background: #3ee9ef;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.radio-card__input:checked + .radio-card__label {
  color: #3ee9ef;
  font-weight: bold;
}
@-moz-document url-prefix() {
  .radio-card__input:checked + .radio-card__label {
    font-weight: normal;
  }
}
.radio-card__input:checked + .radio-card__label {
  border-color: rgba(62, 233, 239, 0.4);
  background: rgba(14, 26, 36, 0.5);
}
.radio-card__input:checked + .radio-card__label .radio-card__dot {
  border-color: #3ee9ef;
}
.radio-card__input:checked + .radio-card__label .radio-card__dot::after {
  opacity: 1;
  transform: scale(1);
}
.radio-card__input:focus-visible + .radio-card__label {
  outline: 2px solid #3ee9ef;
  outline-offset: 2px;
}

.album-card {
  display: block;
  text-decoration: none;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all ease 250ms;
}
@media (hover: hover) {
  .album-card:hover {
    border-color: #3ee9ef;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  .album-card:hover .album-card__image::before {
    background: rgba(14, 26, 36, 0.25);
  }
  .album-card:hover .album-card__image img {
    transform: scale(1.04);
  }
  .album-card:hover .album-card__image .album-card__tag-bar {
    top: 15%;
  }
}
.album-card__image {
  position: relative;
  aspect-ratio: 491/353;
  overflow: hidden;
  background: rgba(6, 12, 18, 0.8);
}
.album-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.4s ease;
}
.album-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(14, 26, 36, 0.5);
  opacity: 1;
  transition: all ease 500ms;
  pointer-events: none;
}
.album-card__tag-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: all ease 500ms;
  text-transform: uppercase;
  width: 100%;
  justify-content: center;
  padding: 0 10px;
}
.album-card__year {
  color: #3ee9ef;
  white-space: nowrap;
}
.album-card__tag-sep {
  color: #3ee9ef;
}
.album-card__tag {
  color: #3ee9ef;
}
.album-card__body {
  padding: 22px 28px;
}
.album-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9f8fb;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: all ease 200ms;
}
.album-card__count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 3.25px;
  line-height: 1;
  text-transform: uppercase;
  color: #a3B5bd;
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .c-pagination {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.c-pagination .c-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #a3B5bd;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all ease 200ms;
}
.c-pagination .c-page-btn:hover {
  color: #3ee9ef;
  border-color: #3ee9ef;
}
.c-pagination .c-page-btn--active {
  color: #3ee9ef;
  border-color: #3ee9ef;
}
.c-pagination .c-page-btn--prev, .c-pagination .c-page-btn--next {
  gap: 6px;
  color: #a3B5bd;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.about-overview .overview-section {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .overview-section {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .overview-section {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .overview-section {
    padding-inline: 20px;
  }
}
.about-overview .overview-section__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .overview-section__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .overview-section__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .overview-section__inner {
    padding: 24px 16px;
  }
}
.about-overview .overview-section__grid {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .about-overview .overview-section__grid {
    align-items: flex-start;
  }
}
@media screen and (max-width: calc(1440px - 0.02px)) {
  .about-overview .overview-section__grid {
    gap: 40px;
    grid-template-columns: 38% 1fr;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .overview-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-overview .overview-section__media {
  overflow: hidden;
  aspect-ratio: 730/546;
}
.about-overview .overview-section__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.about-overview .overview-section__text {
  display: flex;
  flex-direction: column;
}
.about-overview .overview-section__intro-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  line-height: 1.5;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .overview-section__intro-title {
    font-size: 1.75rem;
  }
}
.about-overview .overview-section__intro-body {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  color: #e9f8fb;
}
.about-overview .event-info-section {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .event-info-section {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .event-info-section {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .event-info-section {
    padding-inline: 20px;
  }
}
.about-overview .event-info-section__inner {
  background: rgba(14, 26, 36, 0.5);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .event-info-section__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .event-info-section__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .event-info-section__inner {
    padding: 24px 16px;
  }
}
.about-overview .event-info-section__sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #e9f8fb;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .event-info-section__sub-title {
    font-size: 1.5rem;
  }
}
.about-overview .info-table {
  width: 100%;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.about-overview .info-table__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .about-overview .info-table__row {
    grid-template-columns: 250px 1fr;
  }
}
.about-overview .info-table__row:last-child {
  border-bottom: none;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .info-table__row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  }
  .about-overview .info-table__row:last-child {
    border-bottom: none;
  }
}
.about-overview .info-table__label {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 3.25px;
  text-transform: uppercase;
  color: #a3B5bd;
  background: rgba(6, 12, 18, 0.85);
  border-right: 1px solid rgba(169, 252, 255, 0.3);
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .info-table__label {
    border-right: none;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
    padding: 12px 16px;
  }
}
.about-overview .info-table__value {
  padding: 24px 28px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .info-table__value {
    padding: 12px 16px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .info-table__value {
    font-size: 1rem;
  }
}
.about-overview .themes-section {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .themes-section {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .themes-section {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .themes-section {
    padding-inline: 20px;
  }
}
.about-overview .themes-section__inner {
  padding: 100px 80px 60px;
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .themes-section__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .themes-section__inner {
    padding: 48px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .themes-section__inner {
    padding: 24px 16px 48px;
  }
}
.about-overview .themes-section__sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .themes-section__sub-title {
    font-size: 1.75rem;
  }
}
.about-overview .themes-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-overview .themes-section__grid {
    margin-bottom: 32px;
    grid-template-columns: 1fr;
  }
}
.about-overview .themes-section .c-btn {
  min-width: 273px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-overview .themes-section .c-btn {
    width: 100%;
  }
}
.about-overview .theme-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  flex-wrap: wrap;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-overview .theme-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
@media (hover: hover) {
  .about-overview .theme-card:hover {
    border-color: rgba(169, 252, 255, 0.5);
  }
}
.about-overview .theme-card__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3ee9ef;
  flex-shrink: 0;
}
.about-overview .theme-card__label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #e9f8fb;
  line-height: 1.5;
}

.about-organizing-teams .teams-section {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-organizing-teams .teams-section {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .teams-section {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .teams-section {
    padding-inline: 20px;
  }
}
.about-organizing-teams .teams-section__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-organizing-teams .teams-section__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .teams-section__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .teams-section__inner {
    padding: 24px 16px;
  }
}
.about-organizing-teams .teams-section .page-title__dec-line {
  margin-bottom: 72px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .teams-section .page-title__dec-line {
    margin-bottom: 36px;
  }
}
.about-organizing-teams .teams-section--shaded .teams-section__inner {
  background: rgba(14, 26, 36, 0.5);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.about-organizing-teams .teams-section--no-border-top .teams-section__inner {
  border-top: 0px;
}
.about-organizing-teams .teams-section__sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #e9f8fb;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .teams-section__sub-title {
    font-size: 1.75rem;
  }
}
.about-organizing-teams .org-tree {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-organizing-teams .chair-card {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .chair-card {
    padding: 20px 20px;
  }
}
.about-organizing-teams .chair-card__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 20px;
}
.about-organizing-teams .chair-card__name {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #e9f8fb;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .chair-card__name {
    font-size: 1.25rem;
  }
}
.about-organizing-teams .chair-card__role {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
  margin-bottom: 24px;
  line-height: 1.6;
}
.about-organizing-teams .chair-card__bio {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #e9f8fb;
  margin-bottom: 24px;
}
.about-organizing-teams .chair-card__detail {
  width: 100%;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.about-organizing-teams .chair-card__detail-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.about-organizing-teams .chair-card__detail-row:last-child {
  border-bottom: none;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .chair-card__detail-row {
    grid-template-columns: 1fr;
  }
}
.about-organizing-teams .chair-card__detail-key {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a3B5bd;
  background: rgba(6, 12, 18, 0.85);
  border-right: 1px solid rgba(169, 252, 255, 0.3);
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .chair-card__detail-key {
    border-right: none;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
    padding: 12px;
  }
}
.about-organizing-teams .chair-card__detail-val {
  display: flex;
  align-items: center;
  padding: 24px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e9f8fb;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .chair-card__detail-val {
    padding: 12px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .chair-card__detail-val {
    font-size: 1rem;
  }
}
.about-organizing-teams .member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .member-grid {
    grid-template-columns: 1fr;
  }
}
.about-organizing-teams .member-card {
  padding: 24px 40px;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .member-card {
    padding: 20px;
  }
}
@media (hover: hover) {
  .about-organizing-teams .member-card:hover {
    border-color: rgba(169, 252, 255, 0.5);
  }
}
.about-organizing-teams .member-card__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 8px;
}
.about-organizing-teams .member-card__name {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #e9f8fb;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-organizing-teams .member-card__name {
    font-size: 1.0625rem;
  }
}
.about-organizing-teams .member-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
  line-height: 1.6;
}
.about-organizing-teams .advisory-table-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.about-organizing-teams .advisory-table-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #0A141C 100%);
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .about-organizing-teams .advisory-table-container::after {
    content: none;
  }
}
.about-organizing-teams .advisory-table-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.about-organizing-teams .advisory-table-wrap::-webkit-scrollbar {
  display: none;
}
.about-organizing-teams .advisory-table-wrap {
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
}
.about-organizing-teams .advisory-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
}
.about-organizing-teams .advisory-table__thead {
  background: rgba(6, 12, 18, 0.85);
}
.about-organizing-teams .advisory-table__th {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a3B5bd;
  text-align: left;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  white-space: nowrap;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .advisory-table__th {
    padding: 16px 20px;
  }
}
.about-organizing-teams .advisory-table__th.-name {
  width: 320px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .advisory-table__th.-name {
    width: 250px;
  }
}
.about-organizing-teams .advisory-table__tr {
  background: rgba(14, 26, 36, 0.5);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.about-organizing-teams .advisory-table__tr:last-child {
  border-bottom: none;
}
.about-organizing-teams .advisory-table__td {
  padding: 24px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e9f8fb;
  vertical-align: middle;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-organizing-teams .advisory-table__td {
    padding: 12px;
    font-size: 1rem;
  }
}
.about-organizing-teams .advisory-table__td--name {
  font-weight: 500;
}
.about-organizing-teams .advisory-table__td--title, .about-organizing-teams .advisory-table__td--affiliation {
  color: #5d6e76;
}

.about-media-gallery-list .gallery-intro {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-list .gallery-intro {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-list .gallery-intro {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-list .gallery-intro {
    padding-inline: 20px;
  }
}
.about-media-gallery-list .gallery-intro__inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-list .gallery-intro__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-list .gallery-intro__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-list .gallery-intro__inner {
    padding: 24px 16px;
  }
}
.about-media-gallery-list .gallery-intro .page-desc {
  margin-bottom: 72px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-list .gallery-intro .page-desc {
    margin-bottom: 36px;
  }
}
.about-media-gallery-list .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .about-media-gallery-list .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-list .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about-media-gallery-photos .gallery-header {
  position: relative;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .gallery-header {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-photos .gallery-header {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .gallery-header {
    padding-inline: 20px;
  }
}
.about-media-gallery-photos .gallery-header__inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  padding: 100px 80px 40px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .gallery-header__inner {
    padding: 48px 40px 32px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-photos .gallery-header__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .gallery-header__inner {
    padding: 24px 16px;
  }
}
.about-media-gallery-photos .page-desc {
  margin-bottom: 72px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-photos .page-desc {
    margin-bottom: 36px;
  }
}
.about-media-gallery-photos .album-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .album-header {
    gap: 16px;
  }
}
.about-media-gallery-photos .album-header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #e9f8fb;
  text-decoration: none;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .album-header__back {
    width: 44px;
    height: 44px;
  }
}
.about-media-gallery-photos .album-header__back:hover {
  color: #3ee9ef;
  border-color: #3ee9ef;
  background-color: rgba(62, 233, 239, 0.1);
}
.about-media-gallery-photos .album-header__back svg {
  width: 28px;
  height: 28px;
}
.about-media-gallery-photos .album-header__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-media-gallery-photos .album-header__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  line-height: 1.2;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-photos .album-header__title {
    font-size: 1.5rem;
  }
}
.about-media-gallery-photos .album-header__sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.about-media-gallery-photos .photo-section {
  position: relative;
  z-index: 0;
}
.about-media-gallery-photos .photo-grid-wrap {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  padding: 32px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .about-media-gallery-photos .photo-grid-wrap {
    padding: 16px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-grid-wrap {
    padding: 12px;
  }
}
.about-media-gallery-photos .photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .about-media-gallery-photos .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(400px - 0.02px)) {
  .about-media-gallery-photos .photo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-media-gallery-photos .photo-item {
  position: relative;
  aspect-ratio: 283/212;
  overflow: hidden;
  cursor: pointer;
  background: rgba(6, 12, 18, 0.8);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 4px;
  transition: all ease 200ms;
}
@media (hover: hover) {
  .about-media-gallery-photos .photo-item:hover {
    border: 1px solid #3ee9ef;
  }
}
.about-media-gallery-photos .photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.35s ease;
}
.about-media-gallery-photos .photo-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 233, 239, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.about-media-gallery-photos .view-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}
.about-media-gallery-photos .view-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #3ee9ef;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  overflow: hidden;
  transition: all ease 200ms;
}
.about-media-gallery-photos .view-more-btn::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: all ease 500ms;
}
.about-media-gallery-photos .view-more-btn:hover > div {
  margin-left: 0;
}
.about-media-gallery-photos .view-more-btn:hover > svg {
  transform: scale(0);
  transform-origin: 100% 50%;
  margin-right: -20px;
}
.about-media-gallery-photos .view-more-btn:hover::after {
  width: 100%;
}
.about-media-gallery-photos .view-more-btn > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-left: -25px;
  transition: all ease 500ms;
}
.about-media-gallery-photos .view-more-btn > svg {
  transition: all ease 500ms;
}
.about-media-gallery-photos .view-more-btn--hidden {
  display: none;
}
.about-media-gallery-photos .gallery-actions {
  position: relative;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .gallery-actions {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-photos .gallery-actions {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .gallery-actions {
    padding-inline: 20px;
  }
}
.about-media-gallery-photos .gallery-actions__inner {
  padding: 16px 80px 100px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .gallery-actions__inner {
    padding: 16px 40px 48px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-media-gallery-photos .gallery-actions__inner {
    padding: 16px 24px 32px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .gallery-actions__inner {
    padding: 16px 16px 32px;
  }
}
.about-media-gallery-photos .gallery-actions .c-btn {
  min-width: 200px;
}
.about-media-gallery-photos .gallery-actions .c-btn .arrow {
  transform: translateY(-5px) rotate(180deg);
}
.about-media-gallery-photos .photo-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 3, 8, 0.97);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.about-media-gallery-photos .photo-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.about-media-gallery-photos .photo-modal__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(6, 12, 18, 0.85);
  padding: 32px 40px 20px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  flex-shrink: 0;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__topbar {
    padding: 16px 20px 20px;
  }
}
.about-media-gallery-photos .photo-modal__album-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #e9f8fb;
  margin-bottom: 6px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__album-title {
    font-size: 1.125rem;
  }
}
.about-media-gallery-photos .photo-modal__album-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
}
.about-media-gallery-photos .photo-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #e9f8fb;
  background: transparent;
  cursor: pointer;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__close {
    width: 44px;
    height: 44px;
  }
}
.about-media-gallery-photos .photo-modal__close:hover {
  border-color: rgba(169, 252, 255, 0.4);
  color: #e9f8fb;
  background-color: rgba(62, 233, 239, 0.1);
}
.about-media-gallery-photos .photo-modal__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 40px;
  background: #15171A;
}
.about-media-gallery-photos .photo-modal__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1056px;
  width: 100%;
  max-height: calc(100vh - 280px);
  aspect-ratio: 1056/797;
  margin-bottom: 20px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__image-wrap {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__image-wrap {
    max-width: 100%;
  }
}
.about-media-gallery-photos .photo-modal__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.about-media-gallery-photos .photo-modal__caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #a3B5bd;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
}
.about-media-gallery-photos .photo-modal__prev, .about-media-gallery-photos .photo-modal__next {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(calc(-50% - 33.5px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #e9f8fb;
  cursor: pointer;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__prev, .about-media-gallery-photos .photo-modal__next {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__prev, .about-media-gallery-photos .photo-modal__next {
    width: 18px;
    height: 18px;
  }
}
.about-media-gallery-photos .photo-modal__prev {
  left: 40px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__prev {
    left: 20px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__prev {
    left: 10px;
  }
}
.about-media-gallery-photos .photo-modal__next {
  right: 40px;
  transform: translateY(calc(-50% - 33.5px)) rotate(180deg);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__next {
    right: 20px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-media-gallery-photos .photo-modal__next {
    right: 10px;
  }
}
.about-media-gallery-photos .photo-modal__counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: #5d6e76;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.about-media-gallery-photos .photo-modal__counter-current {
  color: #e9f8fb;
}
.about-media-gallery-photos .photo-modal__counter-sep {
  color: #a3B5bd;
}
.about-media-gallery-photos .photo-modal__counter-total {
  color: #e9f8fb;
}

.about-faq .faq-body {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-faq .faq-body {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-faq .faq-body {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-body {
    padding-inline: 20px;
  }
}
.about-faq .faq-body__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  margin: 0 auto;
  padding: 100px 240px;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .about-faq .faq-body__inner {
    padding: 100px 120px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-faq .faq-body__inner {
    padding: 100px 60px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-faq .faq-body__inner {
    padding: 48px 30px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-body__inner {
    padding: 48px 20px;
  }
}
.about-faq .faq-body__inner .page-desc {
  margin-bottom: 64px;
}
.about-faq .faq-search {
  position: relative;
  margin-bottom: 12px;
}
.about-faq .faq-search__icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #e9f8fb;
  pointer-events: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-search__icon {
    left: 15px;
    width: 24px;
  }
}
.about-faq .faq-search__input {
  width: 100%;
  height: 76px;
  padding: 0 28px 0 68px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e9f8fb;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  transition: border-color 0.2s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-search__input {
    height: 50px;
    font-size: 1rem;
    padding: 0 20px 0 50px;
  }
}
.about-faq .faq-search__input::-moz-placeholder {
  color: #a3B5bd;
}
.about-faq .faq-search__input::placeholder {
  color: #a3B5bd;
}
.about-faq .faq-search__input:focus {
  border-color: #3ee9ef;
}
.about-faq .faq-search .field-clearable__btn {
  right: 28px;
}
.about-faq .faq-search .field-clearable__btn svg {
  width: 16px;
  height: 16px;
}
.about-faq .faq-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: #a3B5bd;
  padding-bottom: 32px;
  margin-bottom: 20px;
}
.about-faq .faq-meta strong {
  font-weight: 400;
  color: #e9f8fb;
}
.about-faq .faq-meta .clear-filters {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  color: #a3B5bd;
  font-weight: 400;
  letter-spacing: 1.3px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.about-faq .faq-meta .clear-filters:hover {
  color: #e9f8fb;
}
.about-faq .faq-meta .clear-filters--visible {
  opacity: 1;
  pointer-events: auto;
}
.about-faq .faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.about-faq .faq-filter-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #a3B5bd;
  background: transparent;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all ease 200ms;
}
.about-faq .faq-filter-btn:hover {
  color: #e9f8fb;
  border-color: rgba(169, 252, 255, 0.5);
}
.about-faq .faq-filter-btn--active {
  color: #000308;
  background: #3ee9ef;
  border-color: #3ee9ef;
}
.about-faq .faq-filter-btn--active:hover {
  color: #000308;
}
.about-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  margin-bottom: 40px;
}
.about-faq .faq-item {
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.about-faq .faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all ease 200ms;
}
.about-faq .faq-item__trigger:hover .faq-item__question {
  color: #3ee9ef;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-item__trigger {
    gap: 12px;
  }
}
.about-faq .faq-item__cat {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 3.25px;
  text-transform: uppercase;
  color: #e9f8fb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-item__cat {
    display: none;
  }
}
.about-faq .faq-item__question {
  flex: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  line-height: 1.5;
  transition: all ease 200ms;
}
.about-faq .faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #a3B5bd;
  transition: all ease 200ms;
}
.about-faq .faq-item--open .faq-item__question {
  color: #3ee9ef;
}
.about-faq .faq-item--open .faq-item__icon {
  border-color: #3ee9ef;
  color: #3ee9ef;
}
.about-faq .faq-item--open .faq-item__icon .icon-plus {
  display: none;
}
.about-faq .faq-item--open .faq-item__icon .icon-minus {
  display: block;
}
.about-faq .faq-item .icon-minus {
  display: none;
}
.about-faq .faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.about-faq .faq-item__answer {
  padding: 0 48px 32px 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #e9f8fb;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-item__answer {
    padding: 0 0 32px 0;
  }
}
.about-faq .c-pagination {
  margin-bottom: 64px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .c-pagination {
    margin-top: 0;
    margin-bottom: 48px;
  }
}
.about-faq .faq-cta {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-faq .faq-cta {
    padding: 20px;
  }
}
.about-faq .faq-cta__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 20px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-faq .faq-cta__title {
    font-size: 1.375rem;
  }
}
.about-faq .faq-cta__desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a3B5bd;
  line-height: 1.6;
  margin-bottom: 36px;
}
.about-faq .faq-cta__email {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding: 0 24px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #e9f8fb;
  background: transparent;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  text-decoration: none;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(400px - 0.02px)) {
  .about-faq .faq-cta__email {
    width: 100%;
    font-size: 0.875rem;
    height: 50px;
    padding: 0 10px;
  }
}
.about-faq .faq-cta__email:hover {
  border: 2px solid #3ee9ef;
  color: #3ee9ef;
}

.about-previous-events .prev-intro {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-previous-events .prev-intro {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-previous-events .prev-intro {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .prev-intro {
    padding-inline: 20px;
  }
}
.about-previous-events .prev-intro__inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-previous-events .prev-intro__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-previous-events .prev-intro__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .prev-intro__inner {
    padding: 24px 16px;
  }
}
.about-previous-events .year-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  margin-bottom: 32px;
}
.about-previous-events .year-tab-btn {
  padding: 12px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a3B5bd;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all ease 200ms;
  white-space: nowrap;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .year-tab-btn {
    font-size: 0.9375rem;
    padding: 12px 16px;
  }
}
.about-previous-events .year-tab-btn:hover {
  color: #5d6e76;
}
.about-previous-events .year-tab-btn--active {
  color: #3ee9ef;
  border-bottom-color: #3ee9ef;
}
.about-previous-events .year-panel {
  display: none;
}
.about-previous-events .year-panel--active {
  display: block;
}
.about-previous-events .event-card {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  padding: 40px 240px;
  margin-bottom: 72px;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .about-previous-events .event-card {
    padding: 40px 120px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-previous-events .event-card {
    padding: 40px 60px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-previous-events .event-card {
    padding: 40px 30px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .event-card {
    padding: 40px 20px;
  }
}
.about-previous-events .event-card__heading {
  text-align: center;
}
.about-previous-events .event-card__sub-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 10px;
}
.about-previous-events .event-card__sub-label span {
  color: #3ee9ef;
}
.about-previous-events .event-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  line-height: 1.1;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-previous-events .event-card__title {
    font-size: 1.75rem;
  }
}
.about-previous-events .event-card__poster {
  width: 100%;
  margin: 0 auto 32px;
  display: block;
  aspect-ratio: 1040/780;
  overflow: hidden;
}
.about-previous-events .event-card__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.about-previous-events .event-card__table {
  margin-bottom: 32px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-previous-events .event-card__table {
    margin-bottom: 24px;
  }
}
.about-previous-events .event-card__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.about-previous-events .event-card__row:last-child {
  border-bottom: none;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .event-card__row {
    grid-template-columns: 1fr;
  }
}
.about-previous-events .event-card__key {
  padding: 16px 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a3B5bd;
  background: rgba(6, 12, 18, 0.85);
  border-right: 1px solid rgba(169, 252, 255, 0.3);
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .event-card__key {
    border-right: none;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
    padding: 12px 16px;
  }
}
.about-previous-events .event-card__val {
  padding: 16px 20px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .event-card__val {
    padding: 12px 16px;
    font-size: 1rem;
  }
}
.about-previous-events .event-card__actions {
  text-align: center;
}
.about-previous-events .media-tabs {
  height: 58px;
  position: relative;
  display: inline-flex;
  background: rgba(0, 3, 8, 0.6);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  padding: 4px;
  gap: 0;
  margin-bottom: 32px;
}
.about-previous-events .media-tabs__indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #3ee9ef;
  opacity: 0.2;
  border-radius: 9999px;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.about-previous-events .media-tab-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 50px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-indent: 3.5px;
  text-transform: uppercase;
  color: #a3B5bd;
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all ease 200ms;
}
.about-previous-events .media-tab-btn--active {
  color: #3ee9ef;
}
.about-previous-events .media-panel {
  display: none;
}
.about-previous-events .media-panel--active {
  display: block;
}
.about-previous-events .prev-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .about-previous-events .prev-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .prev-photo-grid {
    grid-template-columns: 1fr;
  }
}
.about-previous-events .prev-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .about-previous-events .prev-video-grid {
    grid-template-columns: 1fr;
  }
}
.about-previous-events .video-card {
  position: relative;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all ease 250ms;
}
@media (hover: hover) {
  .about-previous-events .video-card:hover {
    border-color: #3ee9ef;
  }
}
.about-previous-events .video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.about-previous-events .video-card__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(14, 26, 36, 0.5);
  opacity: 1;
  transition: all ease 500ms;
  pointer-events: none;
}
.about-previous-events .video-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.35s ease;
}
.about-previous-events .video-card:hover .video-card__thumb::before {
  background: rgba(14, 26, 36, 0.25);
}
.about-previous-events .video-card:hover .video-card__thumb img {
  transform: scale(1.05);
}
.about-previous-events .video-card:hover .video-card__play {
  width: 64px;
  height: 64px;
  background-color: rgba(62, 233, 239, 0.1);
  border-color: rgba(169, 252, 255, 0.5);
}
.about-previous-events .video-card:hover .video-card__play svg path {
  fill: #3ee9ef;
}
.about-previous-events .video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 8, 0.15);
  transition: all ease 200ms;
}
.about-previous-events .video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  background: transparent;
  color: #e9f8fb;
  border-radius: 9999px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  transition: all ease 200ms;
}
.about-previous-events .video-card__play svg path {
  transition: all ease 200ms;
}
.about-previous-events .video-card__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px 28px;
}
.about-previous-events .video-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9f8fb;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: start;
  line-height: 1.3;
  transition: all ease 200ms;
}
.video-card:hover .about-previous-events .video-card__title {
  color: #3ee9ef;
}
.about-previous-events .video-card__duration {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: #a3B5bd;
  letter-spacing: 3.25px;
}
.about-previous-events .prev-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
}
.about-previous-events .prev-empty__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #a3B5bd;
  font-style: italic;
  text-align: center;
}
.about-previous-events .album-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: rgba(0, 3, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal {
    padding: 16px 12px;
  }
}
.about-previous-events .album-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.about-previous-events .album-modal--open .album-modal__box {
  transform: translateY(0);
  opacity: 1;
}
.about-previous-events .album-modal__box {
  position: relative;
  width: 100%;
  max-width: 1520px;
  max-height: 88vh;
  background: #0b1624;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal__box {
    max-height: 92vh;
    border-radius: 16px;
  }
}
.about-previous-events .album-modal__header {
  background-color: rgba(6, 12, 18, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 20px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  flex-shrink: 0;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal__header {
    padding: 20px;
  }
}
.about-previous-events .album-modal__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9f8fb;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal__title {
    font-size: 1.125rem;
  }
}
.about-previous-events .album-modal__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
}
.about-previous-events .album-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #e9f8fb;
  background: transparent;
  cursor: pointer;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal__close {
    width: 44px;
    height: 44px;
  }
}
.about-previous-events .album-modal__close:hover {
  border-color: rgba(169, 252, 255, 0.4);
  color: #e9f8fb;
  background-color: rgba(62, 233, 239, 0.1);
}
.about-previous-events .album-modal__body {
  flex: 1;
  overflow-y: auto;
  background: #121820;
  padding: 32px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal__body {
    padding: 16px;
  }
}
.about-previous-events .album-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .about-previous-events .album-modal__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .about-previous-events .album-modal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .album-modal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(400px - 0.02px)) {
  .about-previous-events .album-modal__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-previous-events .album-modal__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(6, 12, 18, 0.8);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 4px;
}
.about-previous-events .album-modal__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.3s ease;
}
.about-previous-events .video-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 3, 8, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.about-previous-events .video-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.about-previous-events .video-modal--open .video-modal__box {
  transform: scale(1);
  opacity: 1;
}
.about-previous-events .video-modal__box {
  position: relative;
  width: 100%;
  max-width: 1350px;
  transform: scale(0.97);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 24px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .about-previous-events .video-modal__box {
    padding: 16px 12px;
  }
}
.about-previous-events .video-modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #5d6e76;
  background: rgba(14, 26, 36, 0.8);
  cursor: pointer;
  transition: all ease 200ms;
  z-index: 1;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .about-previous-events .video-modal__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}
.about-previous-events .video-modal__close:hover {
  border-color: #3ee9ef;
  color: #e9f8fb;
  background-color: rgba(62, 233, 239, 0.1);
}
.about-previous-events .video-modal__iframe-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}
.about-previous-events .video-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.exhibition-general-info .gi-card {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-general-info .gi-card {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .gi-card {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .gi-card {
    padding-inline: 20px;
  }
}
.exhibition-general-info .gi-card__box {
  background-color: rgba(14, 26, 36, 0.5);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-general-info .gi-card__box {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .gi-card__box {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .gi-card__box {
    padding: 24px 16px;
  }
}
.exhibition-general-info .gi-card__heading-wrap {
  text-align: center;
  margin-bottom: 32px;
}
.exhibition-general-info .gi-card .page-title__dec-line {
  margin-bottom: 40px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .gi-card .page-title__dec-line {
    margin-bottom: 20px;
  }
}
.exhibition-general-info .gi-card__sub:not(:last-child) {
  margin-bottom: 32px;
}
.exhibition-general-info .gi-card__sub-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #3ee9ef;
  margin-bottom: 10px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .gi-card__sub-eyebrow {
    margin-bottom: 0px;
  }
}
.exhibition-general-info .gi-card__sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .gi-card__sub-title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .gi-card__sub-title {
    margin-bottom: 16px;
  }
}
.exhibition-general-info .info-table {
  width: 100%;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.exhibition-general-info .info-table__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.exhibition-general-info .info-table__row:last-child {
  border-bottom: none;
}
@media screen and (max-width: calc(1440px - 0.02px)) {
  .exhibition-general-info .info-table__row {
    grid-template-columns: 240px 1fr;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .info-table__row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  }
  .exhibition-general-info .info-table__row:last-child {
    border-bottom: none;
  }
}
.exhibition-general-info .info-table__label {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3B5bd;
  background: rgba(6, 12, 18, 0.85);
  border-right: 1px solid rgba(169, 252, 255, 0.3);
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .info-table__label {
    border-right: none;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
    padding: 16px 12px;
  }
}
.exhibition-general-info .info-table__value {
  padding: 32px 24px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  background: rgba(6, 12, 18, 0.15);
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .info-table__value {
    padding: 16px 12px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .info-table__value {
    font-size: 1rem;
  }
}
.exhibition-general-info .logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.exhibition-general-info .logo-grid__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 16px;
  background: #FFF;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 4px;
}
.exhibition-general-info .logo-grid__item img {
  max-height: calc(100% - 12px);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.exhibition-general-info .daily-schedule {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-general-info .daily-schedule {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .daily-schedule {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .daily-schedule {
    padding-inline: 20px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .daily-schedule {
    padding-bottom: 48px;
  }
}
.exhibition-general-info .daily-schedule__inner {
  max-width: 1920px;
  padding: 100px 80px;
  margin: 0 auto;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-general-info .daily-schedule__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .daily-schedule__inner {
    padding: 32px 24px;
    border-radius: 16px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .daily-schedule__inner {
    padding: 24px 16px;
  }
}
.exhibition-general-info .daily-schedule__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #a3B5bd;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.exhibition-general-info .daily-schedule__eyebrow-num {
  color: #3ee9ef;
}
.exhibition-general-info .daily-schedule__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-general-info .daily-schedule__title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
}
.exhibition-general-info .schedule-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  overflow-y: hidden;
  overflow-x: auto;
}
.exhibition-general-info .schedule-tabs__btn {
  padding: 16px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #a3B5bd;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all ease 200ms;
  white-space: nowrap;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .schedule-tabs__btn {
    font-size: 1rem;
    padding: 8px 12px;
  }
}
.exhibition-general-info .schedule-tabs__btn:hover {
  color: #3ee9ef;
}
.exhibition-general-info .schedule-tabs__btn--active {
  color: #3ee9ef;
  border-bottom-color: #3ee9ef;
}
.exhibition-general-info .schedule-panel {
  display: none;
}
.exhibition-general-info .schedule-panel--active {
  display: block;
}
.exhibition-general-info .schedule-table-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.exhibition-general-info .schedule-table-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #0A141C 100%);
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .exhibition-general-info .schedule-table-container::after {
    content: none;
  }
}
.exhibition-general-info .schedule-table-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exhibition-general-info .schedule-table-wrap::-webkit-scrollbar {
  display: none;
}
.exhibition-general-info .schedule-table-wrap {
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
}
.exhibition-general-info .schedule-table-wrap table {
  min-width: 900px;
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
}
.exhibition-general-info .schedule-table {
  width: 100%;
  min-width: 0px;
  border-collapse: collapse;
}
.exhibition-general-info .schedule-table__thead {
  background: rgba(6, 12, 18, 0.85);
}
.exhibition-general-info .schedule-table__th {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a3B5bd;
  text-align: left;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-general-info .schedule-table__th {
    width: 430px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .schedule-table__th {
    padding: 16px 20px;
  }
}
.exhibition-general-info .schedule-table__th--time {
  width: 226px;
}
.exhibition-general-info .schedule-table__tr {
  background: #070F16;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  transition: background 0.18s ease;
}
.exhibition-general-info .schedule-table__tr:last-child {
  border-bottom: none;
}
.exhibition-general-info .schedule-table__tr--break .schedule-table__td--main {
  color: #a3B5bd;
  font-weight: 400;
}
.exhibition-general-info .schedule-table__td {
  padding: 24px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  vertical-align: middle;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .schedule-table__td {
    padding: 12px;
    font-size: 1rem;
  }
}
.exhibition-general-info .schedule-table__td--time {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: #a3B5bd;
  white-space: nowrap;
  text-align: center;
}
.exhibition-general-info .schedule-table__td--main {
  color: #e9f8fb;
  font-weight: 500;
}
.exhibition-general-info .schedule-table__td--room {
  color: #5d6e76;
}
.exhibition-general-info .schedule-table__td--empty {
  color: #a3B5bd;
}
.exhibition-general-info .schedule-table__program-title {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #e9f8fb;
  line-height: 1.5;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .schedule-table__program-title {
    font-size: 1rem;
  }
}
.exhibition-general-info .schedule-table__program-sub {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a3B5bd;
  margin-top: 2px;
  line-height: 1.5;
}
.exhibition-general-info .event-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: gba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  white-space: nowrap;
  margin-bottom: 2px;
}
.exhibition-general-info .schedule-disclaimer {
  margin-top: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #a3B5bd;
  line-height: 1.6;
}
.exhibition-general-info .c-btn {
  margin-top: 64px;
  min-width: 353px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-general-info .c-btn {
    min-width: 100%;
    margin-top: 32px;
  }
}

.exhibition-list-of-exhibitors .page-hero {
  margin-top: -55px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .page-hero {
    margin-top: 0px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-intro {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro {
    padding-inline: 20px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-intro__inner {
  background: rgba(0, 3, 8, 0.3);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px 60px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro__inner {
    padding: 24px 16px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-intro .page-title__dec-line {
  margin-bottom: 20px;
}
.exhibition-list-of-exhibitors .exhibitors-intro .page-desc {
  margin-bottom: 60px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro .page-desc {
    margin-bottom: 40px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-intro__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exhibition-list-of-exhibitors .exhibitors-intro__tabs::-webkit-scrollbar {
  display: none;
}
.exhibition-list-of-exhibitors .exhibitors-intro__tab-btn {
  padding: 12px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #a3B5bd;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all ease 200ms;
  white-space: nowrap;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-intro__tab-btn {
    padding: 9px 12px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-intro__tab-btn:hover {
  color: #3ee9ef;
}
.exhibition-list-of-exhibitors .exhibitors-intro__tab-btn--active {
  color: #3ee9ef;
  border-bottom-color: #3ee9ef;
}
.exhibition-list-of-exhibitors .tier-section {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section {
    padding-inline: 20px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section {
    padding-bottom: 40px;
  }
}
.exhibition-list-of-exhibitors .tier-section--inner {
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section--inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section--inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section--inner {
    padding: 24px 16px;
  }
}
.exhibition-list-of-exhibitors .tier-section--diamond .tier-section--inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  padding: 0 80px 100px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section--diamond .tier-section--inner {
    padding: 0 40px 48px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section--diamond .tier-section--inner {
    padding: 0 24px 32px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section--diamond .tier-section--inner {
    padding: 0 16px 24px;
  }
}
.exhibition-list-of-exhibitors .tier-section--platinum .tier-section--inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: rgba(14, 26, 36, 0.5);
}
.exhibition-list-of-exhibitors .tier-section__heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.exhibition-list-of-exhibitors .tier-section__heading-row > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section__heading-row {
    flex-direction: column;
    gap: 8px;
  }
}
.exhibition-list-of-exhibitors .tier-section__tier-label {
  color: #3ee9ef;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.exhibition-list-of-exhibitors .tier-section__tier-name {
  color: #e9f8fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section__tier-name {
    font-size: 1.75rem;
  }
}
.exhibition-list-of-exhibitors .tier-section__count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.exhibition-list-of-exhibitors .tier-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.exhibition-list-of-exhibitors .tier-section__list--grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section__list--grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section__list--grid-4 {
    grid-template-columns: 1fr;
  }
}
.exhibition-list-of-exhibitors .tier-section__list--grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section__list--grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-section__list--grid-3 {
    grid-template-columns: 1fr;
  }
}
.exhibition-list-of-exhibitors .ex-card {
  display: block;
  text-decoration: none;
  background: rgba(14, 26, 36, 0.6);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all ease 250ms;
}
@media (hover: hover) {
  .exhibition-list-of-exhibitors .ex-card:hover .ex-card__visit-link::after {
    width: 100%;
  }
  .exhibition-list-of-exhibitors .ex-card:hover .ex-card__visit-link > div {
    margin-left: -10px;
  }
  .exhibition-list-of-exhibitors .ex-card:hover .ex-card__visit-link > img {
    transform-origin: 100% 50%;
    transform: scale(0);
  }
}
.exhibition-list-of-exhibitors .ex-card--diamond {
  display: grid;
  grid-template-columns: 420px 1fr;
  padding: 28px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card--diamond {
    grid-template-columns: 210px 1fr;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card--diamond {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}
@media (hover: hover) {
  .exhibition-list-of-exhibitors .ex-card--diamond:hover {
    border: 1px solid #3ee9ef;
  }
}
.exhibition-list-of-exhibitors .ex-card--platinum {
  display: flex;
  flex-direction: column;
  padding: 28px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card--platinum {
    padding: 14px;
  }
}
@media (hover: hover) {
  .exhibition-list-of-exhibitors .ex-card--platinum:hover {
    border: 1px solid #B29CFF;
  }
}
.exhibition-list-of-exhibitors .ex-card--platinum .ex-card__media {
  margin-bottom: 20px;
}
.exhibition-list-of-exhibitors .ex-card--gold {
  display: grid;
  grid-template-columns: 183px 1fr;
  padding: 20px;
}
@media (hover: hover) {
  .exhibition-list-of-exhibitors .ex-card--gold:hover {
    border: 1px solid #e9f8fb;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card--gold {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}
.exhibition-list-of-exhibitors .ex-card__media {
  position: relative;
  overflow: hidden;
  background: rgba(6, 12, 18, 0.8);
  flex-shrink: 0;
  aspect-ratio: 3/2;
  border-radius: 7.5px;
  border: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card__media {
    margin-bottom: 20px;
  }
}
.exhibition-list-of-exhibitors .ex-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.4s ease;
  -o-object-fit: contain;
     object-fit: contain;
}
.ex-card:hover .exhibition-list-of-exhibitors .ex-card__media img {
  transform: scale(1.04);
}
.exhibition-list-of-exhibitors .ex-card.ex-card--diamond .ex-card__body {
  padding-left: 36px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card.ex-card--diamond .ex-card__body {
    padding-left: 0;
  }
}
.exhibition-list-of-exhibitors .ex-card.ex-card--platinum .ex-card__name {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.exhibition-list-of-exhibitors .ex-card.ex-card--platinum .ex-card__exhibits-list {
  margin-bottom: 28px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__media {
    margin-bottom: 20px;
  }
}
.exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__body {
  padding-left: 16px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__body {
    padding-left: 0;
  }
}
.exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__badge-row {
  margin-bottom: 2px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__badge-row {
    margin-bottom: 20px;
  }
}
.exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__name {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 2px;
  margin-bottom: 2px;
}
.exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__desc {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.exhibition-list-of-exhibitors .ex-card.ex-card--gold .ex-card__exhibits-list {
  margin-bottom: 10px;
}
.exhibition-list-of-exhibitors .ex-card__badge-row {
  margin-bottom: 20px;
}
.exhibition-list-of-exhibitors .ex-card__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 20px;
  line-height: 1.2;
}
.exhibition-list-of-exhibitors .ex-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #a3B5bd;
  margin-bottom: 20px;
}
.exhibition-list-of-exhibitors .ex-card__exhibits-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5d6e76;
  line-height: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  margin-bottom: 4px;
}
.exhibition-list-of-exhibitors .ex-card__exhibits-list {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
  line-height: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .ex-card__exhibits-list {
    margin-bottom: 40px;
  }
}
.exhibition-list-of-exhibitors .ex-card__visit-link {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #3ee9ef;
  width: 100%;
  transition: all ease 200ms;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62, 233, 239, 0.5);
  overflow: hidden;
}
.exhibition-list-of-exhibitors .ex-card__visit-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: all ease 500ms;
}
.exhibition-list-of-exhibitors .ex-card__visit-link > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: all ease 400ms;
  margin-left: -33px;
}
.exhibition-list-of-exhibitors .ex-card__visit-link > img {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.exhibition-list-of-exhibitors .tier-badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 18px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  letter-spacing: 3.25px;
  white-space: nowrap;
}
@media screen and (max-width: calc(1440px - 0.02px)) {
  .exhibition-list-of-exhibitors .tier-badge {
    height: 30px;
    padding: 0px 15px;
    letter-spacing: 2.25px;
  }
}
.exhibition-list-of-exhibitors .tier-badge--diamond {
  color: #3ee9ef;
}
.exhibition-list-of-exhibitors .tier-badge--platinum {
  color: #B29CFF;
}
.exhibition-list-of-exhibitors .tier-badge--gold {
  color: #a3B5bd;
}
.exhibition-list-of-exhibitors .exhibitors-cta {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-cta {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-cta {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-cta {
    padding-inline: 20px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-cta {
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-cta {
    padding-bottom: 48px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-cta__box {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-cta__box {
    padding: 40px 24px;
  }
}
.exhibition-list-of-exhibitors .exhibitors-cta__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 20px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-list-of-exhibitors .exhibitors-cta__title {
    font-size: 1.375rem;
  }
}
.exhibition-list-of-exhibitors .exhibitors-cta__desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a3B5bd;
  margin-bottom: 38px;
  line-height: 1.6;
}
.exhibition-list-of-exhibitors .exhibitors-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 650px) {
  .exhibition-list-of-exhibitors .exhibitors-cta__actions {
    flex-direction: column;
  }
}
.exhibition-list-of-exhibitors .exhibitors-cta__actions .c-btn.-accent {
  width: 230px;
}
@media screen and (max-width: 650px) {
  .exhibition-list-of-exhibitors .exhibitors-cta__actions .c-btn.-accent {
    width: 100%;
  }
}
.exhibition-list-of-exhibitors .exhibitors-cta__actions .c-btn.-transparent {
  width: 250px;
}
@media screen and (max-width: 650px) {
  .exhibition-list-of-exhibitors .exhibitors-cta__actions .c-btn.-transparent {
    width: 100%;
  }
}

.exhibition-booth-layout .booth-intro {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-booth-layout .booth-intro {
    margin-bottom: 28px;
  }
}
.exhibition-booth-layout .booth-intro .page-title__dec-line {
  margin-bottom: 20px;
}
.exhibition-booth-layout .booth-intro .page-desc {
  margin-bottom: 0;
}
.exhibition-booth-layout .booth-map {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-booth-layout .booth-map {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-booth-layout .booth-map {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-booth-layout .booth-map {
    padding-inline: 20px;
  }
}
.exhibition-booth-layout .booth-map__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-booth-layout .booth-map__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-booth-layout .booth-map__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-booth-layout .booth-map__inner {
    padding: 24px 16px;
  }
}
.exhibition-booth-layout .booth-map__image-wrap {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}
.exhibition-booth-layout .booth-map__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.exhibition-booth-layout .booth-map__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 40px 56px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-booth-layout .booth-map__actions {
    padding: 40px 28px;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-booth-layout .booth-map__actions {
    flex-direction: column;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-booth-layout .booth-map__actions {
    padding: 20px;
  }
}
.exhibition-booth-layout .booth-map__actions .c-btn {
  width: 230px;
}
.exhibition-booth-layout .booth-map__actions-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-booth-layout .booth-map__actions-left {
    flex-direction: column;
    width: 100%;
  }
  .exhibition-booth-layout .booth-map__actions-left .c-btn {
    width: 100%;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-booth-layout .booth-map__actions-right {
    width: 100%;
  }
  .exhibition-booth-layout .booth-map__actions-right .c-btn {
    width: 100%;
  }
}

.exhibition-inquiry .inquiry-layout {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-inquiry .inquiry-layout {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-inquiry .inquiry-layout {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .inquiry-layout {
    padding-inline: 20px;
  }
}
.exhibition-inquiry .inquiry-layout__inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-inquiry .inquiry-layout__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-inquiry .inquiry-layout__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .inquiry-layout__inner {
    padding: 24px 16px;
  }
}
.exhibition-inquiry .inquiry-layout__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
}
@media screen and (max-width: 1366px) {
  .exhibition-inquiry .inquiry-layout__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.exhibition-inquiry .inquiry-intro {
  position: relative;
}
.exhibition-inquiry .inquiry-intro .page-title__dec-line {
  margin-bottom: 20px;
}
.exhibition-inquiry .inquiry-intro .page-desc {
  max-width: 608px;
  margin-bottom: 0;
}
.exhibition-inquiry .form-section {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 22px 36px 36px 36px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .form-section {
    padding: 20px;
  }
}
.exhibition-inquiry .form-section:not(:last-child) {
  margin-bottom: 32px;
}
.exhibition-inquiry .form-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .form-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
.exhibition-inquiry .form-section__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3ee9ef;
}
.exhibition-inquiry .form-section__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e9f8fb;
}
.exhibition-inquiry .form-section__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exhibition-inquiry .form-section [data-lastpass-icon-root] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.exhibition-inquiry .field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 3, 8, 0.4);
  border: 1px solid rgba(169, 252, 255, 0.15);
  border-radius: 14px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all ease 200ms;
}
.exhibition-inquiry .field-checkbox:hover {
  border-color: rgba(169, 252, 255, 0.3);
}
.exhibition-inquiry .field-checkbox.is-error {
  border-color: #e05c73;
}
.exhibition-inquiry .field-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.exhibition-inquiry .field-checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.exhibition-inquiry .field-checkbox__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1' stroke='%23000308' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.exhibition-inquiry .field-checkbox__input:checked ~ .field-checkbox__box {
  background: #3ee9ef;
  border-color: #3ee9ef;
}
.exhibition-inquiry .field-checkbox__input:checked ~ .field-checkbox__box::after {
  opacity: 1;
}
.exhibition-inquiry .field-checkbox__input:focus-visible ~ .field-checkbox__box {
  outline: 2px solid #3ee9ef;
  outline-offset: 2px;
}
.exhibition-inquiry .field-checkbox__text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #5d6e76;
  line-height: 1.6;
}
.exhibition-inquiry .form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.exhibition-inquiry .form-actions .c-btn.-accent {
  width: 230px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .form-actions .c-btn.-accent {
    width: 100%;
  }
}
.exhibition-inquiry .form-actions .c-btn.-transparent {
  width: 135px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .form-actions .c-btn.-transparent {
    width: 100%;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .form-actions {
    flex-direction: column;
  }
}
.exhibition-inquiry .direct-contact {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-inquiry .direct-contact {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-inquiry .direct-contact {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .direct-contact {
    padding-inline: 20px;
  }
}
.exhibition-inquiry .direct-contact {
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-inquiry .direct-contact {
    padding-bottom: 48px;
  }
}
.exhibition-inquiry .direct-contact__inner {
  padding: 0 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-inquiry .direct-contact__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-inquiry .direct-contact__inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .direct-contact__inner {
    padding: 0 16px;
  }
}
.exhibition-inquiry .direct-contact__box {
  display: grid;
  grid-template-columns: 39.33% 1fr;
  gap: 32px;
  align-items: flex-start;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 48px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .exhibition-inquiry .direct-contact__box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .direct-contact__box {
    padding: 24px 16px;
  }
}
.exhibition-inquiry .direct-contact__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 10px;
}
.exhibition-inquiry .direct-contact__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  line-height: 1.2;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-inquiry .direct-contact__title {
    font-size: 1.75rem;
  }
}
.exhibition-inquiry .direct-contact__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exhibition-inquiry .direct-contact__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-inquiry .direct-contact__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.exhibition-inquiry .direct-contact__key {
  min-width: 220px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.exhibition-inquiry .direct-contact__val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #e9f8fb;
}
.exhibition-inquiry .direct-contact__val--link {
  color: #3ee9ef;
  text-decoration: none;
  transition: all ease 200ms;
}
.exhibition-inquiry .direct-contact__val--link:hover {
  color: rgba(169, 252, 255, 0.5);
}

.exhibition-success .inquiry-intro {
  position: relative;
  margin-bottom: 72px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-intro {
    margin-bottom: 36px;
  }
}
.exhibition-success .inquiry-intro .page-title__dec-line {
  margin-bottom: 20px;
}
.exhibition-success .inquiry-intro .page-desc {
  max-width: 560px;
}
.exhibition-success .inquiry-success {
  position: relative;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-success .inquiry-success {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-success .inquiry-success {
    padding-inline: 20px;
  }
}
.exhibition-success .inquiry-success__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .exhibition-success .inquiry-success__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-success .inquiry-success__inner {
    padding: 24px 16px;
  }
}
.exhibition-success .inquiry-success__panel {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 36px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success__panel {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .exhibition-success .inquiry-success__panel {
    padding: 20px;
  }
}
.exhibition-success .inquiry-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success__icon {
    margin: 0 auto;
  }
}
.exhibition-success .inquiry-success__body {
  max-width: 752px;
}
.exhibition-success .inquiry-success__heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #e9f8fb;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success__heading {
    text-align: center;
  }
}
.exhibition-success .inquiry-success__message {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #a3B5bd;
  margin-bottom: 8px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success__message {
    text-align: center;
  }
}
.exhibition-success .inquiry-success__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .exhibition-success .inquiry-success__actions {
    justify-content: center;
    flex-direction: column;
  }
  .exhibition-success .inquiry-success__actions .c-btn {
    width: 100%;
  }
}

.home .header {
  position: fixed;
  width: 100%;
  border-color: transparent;
}
.home .header.-blur {
  border-color: rgba(169, 252, 255, 0.3);
}
.home .header.-blur::after {
  opacity: 1;
}
.home .header::after {
  opacity: 0;
}
.home .home-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0e1a;
}
.home .home-banner .banner-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home .home-banner .header__inner {
  height: 104px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner .header__inner {
    height: 64px;
  }
}
.home .home-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.home .home-banner__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  transform-origin: 100% 0;
  transform: scale(1.1);
  transition: transform 0s;
}
.home .home-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 26, 0.45) 0%, rgba(10, 14, 26, 0.7) 60%, rgba(10, 14, 26, 0.95) 100%);
  opacity: 1;
}
.home .home-banner .swiper-slide-active .home-banner__bg img, .home .home-banner .swiper-slide-prev .home-banner__bg img {
  transform: scale(1);
  transition: transform 7.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.home .home-banner__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .home .home-banner__nav {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner__nav {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__nav {
    padding-inline: 20px;
  }
}
.home .home-banner__nav {
  height: 80px;
}
.home .home-banner__logo {
  display: flex;
  align-items: center;
}
.home .home-banner__logo img {
  height: 36px;
  width: auto;
}
.home .home-banner__nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner__nav-links {
    display: none;
  }
}
.home .home-banner__nav-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e9f8fb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all ease 200ms;
}
.home .home-banner__nav-link:hover {
  color: #3ee9ef;
}
.home .home-banner__content {
  position: relative;
  z-index: 5;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .home .home-banner__content {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner__content {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__content {
    padding-inline: 20px;
  }
}
.home .home-banner__content {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 238px;
  padding-bottom: 64px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner__content {
    padding-top: 120px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__content {
    padding-top: 100px;
  }
}
.home .home-banner__date-venue {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #e9f8fb;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 20px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner__date-venue {
    gap: 13px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__date-venue {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
    font-size: 1.1875rem;
  }
}
.home .home-banner__date-venue-sep {
  color: #e9f8fb;
  font-weight: 300;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__date-venue-sep {
    display: none;
  }
}
.home .home-banner__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #e9f8fb;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.home .home-banner__title-year {
  color: #3ee9ef;
}
.home .home-banner__title > span {
  display: block;
}
.home .home-banner__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #e9f8fb;
  margin-bottom: 40px;
  max-width: 737px;
  line-height: 1.5;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner__subtitle {
    font-size: 1.125rem;
  }
}
.home .home-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__actions {
    margin-bottom: 35px;
  }
}
.home .home-banner__actions .c-btn.-accent {
  width: 177px;
}
.home .home-banner__actions .c-btn.-transparent {
  width: 227px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner__actions .c-btn.-transparent {
    width: 177px;
  }
}
.home .home-banner__countdown-wrap {
  position: relative;
  z-index: 5;
}
.home .home-banner .countdown-box {
  position: relative;
  background: linear-gradient(0deg, rgba(6, 13, 20, 0.2) 0%, rgba(6, 13, 20, 0.2) 100%), linear-gradient(135deg, rgba(62, 233, 239, 0.02) 0%, rgba(10, 20, 28, 0.07) 39.29%);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  box-shadow: 0 0 60px -20px rgba(62, 233, 239, 0.4), 0 32px 80px -28px rgba(0, 0, 0, 0.7);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-banner .countdown-box {
    padding: 24px;
    gap: 16px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner .countdown-box {
    padding: 20px 8px;
    gap: 12px;
  }
}
.home .home-banner .countdown-box::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(6, 13, 20, 0.2) 0%, rgba(6, 13, 20, 0.2) 100%), linear-gradient(135deg, rgba(62, 233, 239, 0.02) 0%, rgba(10, 20, 28, 0.07) 39.29%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.home .home-banner .countdown-box__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3B5bd;
  white-space: nowrap;
}
.home .home-banner .countdown-box__label span {
  color: #3ee9ef;
}
.home .home-banner .countdown-box__units {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-banner .countdown-box__units {
    gap: 12px;
  }
}
@media screen and (max-width: 450px) {
  .home .home-banner .countdown-box__units {
    gap: 4px;
  }
}
.home .home-banner .countdown-box__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.home .home-banner .countdown-box__num {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 600;
  text-align: center;
  background: linear-gradient(180deg, #FFF 0%, #7DFAFF 80%, #3EE9EF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1.2;
}
.home .home-banner .countdown-box__unit-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5d6e76;
}
@media screen and (max-width: 450px) {
  .home .home-banner .countdown-box__unit-label {
    font-size: 0.75rem;
  }
}
.home .home-banner .countdown-box__sep {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 600;
  color: #3ee9ef;
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 35px;
  animation: bounce 1.25s ease infinite;
}
@keyframes bounce {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
.home .home-about {
  position: relative;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .home .home-about {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-about {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-about {
    padding-inline: 20px;
  }
}
.home .home-about {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-about {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.home .home-about__inner {
  max-width: 1680px;
  margin: 0 auto;
  text-align: center;
}
.home .home-about__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 16px;
}
.home .home-about__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #3ee9ef;
}
.home .home-about__title {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #e9f8fb;
  margin-bottom: 64px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-about__title {
    font-size: 2.5rem;
  }
}
.home .home-about__body {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 1680px;
  margin: 0 auto 32px;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .home .home-about__body {
    font-size: 2rem;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .home .home-about__body {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-about__body {
    font-size: 1.125rem;
  }
}
.home .home-about__body .word {
  display: inline;
  color: #5d6e76;
  transition: color 0.3s ease;
}
.home .home-about__body .word.lit {
  color: #e9f8fb;
}
.home .home-about__link {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  letter-spacing: -0.18px;
  line-height: 1;
  font-weight: 500;
  color: #3ee9ef;
  width: 180px;
  transition: all ease 200ms;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62, 233, 239, 0.5);
  overflow: hidden;
}
.home .home-about__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: all ease 200ms;
}
@media (hover: hover) {
  .home .home-about__link:hover::after {
    width: 100%;
  }
  .home .home-about__link:hover > div {
    margin-left: -10px;
  }
  .home .home-about__link:hover > img {
    transform-origin: 100% 50%;
    transform: scale(0);
  }
}
.home .home-about__link > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: all ease 400ms;
  white-space: nowrap;
  margin-left: -33px;
}
.home .home-about__link > img {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.home .home-why {
  position: relative;
  z-index: 0;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .home .home-why {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-why {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-why {
    padding-inline: 20px;
  }
}
.home .home-why {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-why {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-why {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.home .home-why__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 40px;
}
.home .home-why__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #3ee9ef;
}
.home .home-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .home .home-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-why__grid {
    grid-template-columns: 1fr;
  }
}
.home .why-card {
  position: relative;
  background: #000308;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all ease 250ms;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease, border-color 0.25s ease;
}
.home .why-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.home .why-card.is-visible .why-card__image::before {
  animation: to-right 2s ease forwards;
}
@keyframes to-right {
  0% {
    left: -25%;
  }
  100% {
    left: 125%;
  }
}
.home .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: width 0.5s ease;
}
.home .why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(62, 233, 239, 0.3) 0%, rgba(62, 233, 239, 0.3) 100%), rgba(0, 3, 8, 0.3);
  transition: opacity 0.5s ease;
}
@media (hover: hover) {
  .home .why-card:hover {
    border-color: #3ee9ef;
  }
  .home .why-card:hover::before {
    width: 100%;
  }
  .home .why-card:hover::after {
    opacity: 1;
  }
  .home .why-card:hover .why-card__more {
    border-color: #3ee9ef;
  }
  .home .why-card:hover .why-card__more > div {
    margin-left: -10px;
  }
  .home .why-card:hover .why-card__more > img {
    transform-origin: 100% 50%;
    transform: scale(0);
  }
}
.home .why-card__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #3ee9ef;
  margin-bottom: 14px;
}
.home .why-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 364/264;
  overflow: hidden;
  background: rgba(6, 12, 18, 0.8);
  margin-bottom: 14px;
}
.home .why-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, rgba(62, 233, 239, 0) 0%, rgba(62, 233, 239, 0.5) 50%, rgba(62, 233, 239, 0) 100%);
}
.home .why-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.home .why-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  line-height: 1.25;
  margin-bottom: 14px;
}
.home .why-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #a3B5bd;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: start;
}
.home .why-card__more {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  letter-spacing: -0.18px;
  line-height: 1;
  font-weight: 500;
  color: #3ee9ef;
  width: 100%;
  transition: all ease 200ms;
  text-decoration: none;
  padding-top: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62, 233, 239, 0.5);
  overflow: hidden;
}
.home .why-card__more > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: all ease 400ms;
  white-space: nowrap;
  margin-left: -33px;
}
.home .why-card__more > img {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.home .home-news {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .home .home-news {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-news {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-news {
    padding-inline: 20px;
  }
}
.home .home-news {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-news {
    padding-bottom: 64px;
  }
}
.home .home-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.home .home-news__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 12px;
}
.home .home-news__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #3ee9ef;
}
.home .home-news__title {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e9f8fb;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-news__title {
    font-size: 2rem;
  }
}
.home .home-news__view-all {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  letter-spacing: -0.18px;
  line-height: 1;
  font-weight: 500;
  color: #3ee9ef;
  width: 85px;
  transition: all ease 200ms;
  text-decoration: none;
  padding-top: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62, 233, 239, 0.5);
  overflow: hidden;
}
.home .home-news__view-all::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: all ease 200ms;
}
@media (hover: hover) {
  .home .home-news__view-all:hover::after {
    width: 100%;
  }
  .home .home-news__view-all:hover > div {
    margin-left: -10px;
  }
  .home .home-news__view-all:hover > img {
    transform-origin: 100% 50%;
    transform: scale(0);
  }
}
.home .home-news__view-all > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: all ease 400ms;
  white-space: nowrap;
  margin-left: -33px;
}
.home .home-news__view-all > img {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.home .home-news__list {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
.home .home-news-row {
  position: relative;
  display: grid;
  grid-template-columns: 120px 130px 1fr 24px;
  align-items: center;
  gap: 0 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  text-decoration: none;
  transition: all ease 200ms;
  opacity: 0;
  transform: translateX(30px);
  filter: blur(6px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease, background 0.2s ease;
}
.home .home-news-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(62, 233, 239, 0.1) 29.81%, rgba(62, 233, 239, 0) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.home .home-news-row.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
@media screen and (max-width: 650px) {
  .home .home-news-row {
    grid-template-columns: 1fr 20px;
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
  }
}
.home .home-news-row:hover::before {
  opacity: 1;
}
.home .home-news-row:hover > span:not(.notices__row-arrow) {
  transform: translateX(5px);
}
.home .home-news-row:hover .home-news-row__arrow {
  transform: translate(2px, -2px);
}
.home .home-news-row:hover .home-news-row__arrow--notice {
  color: #3ee9ef;
}
.home .home-news-row:hover .home-news-row__arrow--press {
  color: #B29CFF;
}
.home .home-news-row__date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #a3B5bd;
  transition: all ease 200ms;
}
@media screen and (max-width: 650px) {
  .home .home-news-row__date {
    grid-column: 1;
    grid-row: 1;
  }
}
.home .home-news-row__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid;
  white-space: nowrap;
  transition: all ease 200ms;
}
.home .home-news-row__badge--notice {
  color: #3ee9ef;
  border-color: #3ee9ef;
  transition: all ease 200ms;
}
.home .home-news-row__badge--press {
  color: #B29CFF;
  border-color: #B29CFF;
}
@media screen and (max-width: 650px) {
  .home .home-news-row__badge {
    max-width: 120px;
    grid-column: 1;
    grid-row: 2;
  }
}
.home .home-news-row__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #e9f8fb;
  line-height: 1.5;
  transition: all ease 200ms;
}
@media screen and (max-width: 650px) {
  .home .home-news-row__title {
    grid-column: 1/-1;
    grid-row: 3;
  }
}
.home .home-news-row__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3B5bd;
  transition: all ease 200ms;
  flex-shrink: 0;
}
@media screen and (max-width: 650px) {
  .home .home-news-row__arrow {
    grid-column: 2;
    grid-row: 1;
  }
}
.home .home-cta {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .home .home-cta {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-cta {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-cta {
    padding-inline: 20px;
  }
}
.home .home-cta {
  padding-bottom: 100px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-cta {
    padding-bottom: 64px;
  }
}
.home .home-cta__box {
  position: relative;
  background-color: #0A141C;
  background-image: linear-gradient(90deg, transparent 40%, rgb(10, 20, 28) 100%), linear-gradient(180deg, rgb(10, 20, 28) 0%, rgba(10, 20, 28, 0.75) 5%, rgba(62, 233, 239, 0.2) 50%, rgba(10, 20, 28, 0.75) 95%, rgb(10, 20, 28) 100%);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  padding: 64px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .home .home-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .home .home-cta__box {
    padding: 32px 20px;
  }
}
.home .home-cta__box::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 233, 239, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.home .home-cta__box .dec-line {
  position: absolute;
  bottom: -18px;
  right: 0;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 1080px) {
  .home .home-cta__box .dec-line {
    display: none;
  }
}
.home .home-cta__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home .home-cta__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #e9f8fb;
  line-height: 1.2;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-cta__title {
    font-size: 2rem;
  }
}
.home .home-cta__title em {
  color: #3ee9ef;
  font-style: normal;
}
.home .home-cta__sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #e9f8fb;
  line-height: 1.2;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .home .home-cta__sub {
    font-size: 2rem;
  }
}
.home .home-cta .c-btn {
  width: 220px;
}

.news-notices .notices {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-notices .notices {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-notices .notices {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-notices .notices {
    padding-inline: 20px;
  }
}
.news-notices .notices__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  max-width: 100%;
  padding: 100px 240px 100px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .news-notices .notices__inner {
    padding: 100px 120px 100px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-notices .notices__inner {
    padding: 100px 60px 100px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-notices .notices__inner {
    padding: 48px 30px 48px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-notices .notices__inner {
    padding: 48px 20px 48px;
  }
}
.news-notices .notices .page-desc {
  margin-bottom: 72px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-notices .notices .page-desc {
    margin-bottom: 40px;
  }
}
.news-notices .notices__search {
  position: relative;
  margin-bottom: 12px;
}
.news-notices .notices__search-icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #a3B5bd;
  pointer-events: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-notices .notices__search-icon {
    left: 13px;
  }
}
.news-notices .notices__search-input {
  width: 100%;
  height: 76px;
  padding: 0 28px 0 68px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-notices .notices__search-input {
    height: 66px;
    padding: 0px 28px 0 48px;
  }
}
.news-notices .notices__search-input:hover {
  border: 1px solid #3ee9ef;
}
.news-notices .notices__search-input::-moz-placeholder {
  color: #a3B5bd;
}
.news-notices .notices__search-input::placeholder {
  color: #a3B5bd;
}
.news-notices .notices__search-input:focus {
  border-color: rgba(62, 233, 239, 0.4);
  background: rgba(62, 233, 239, 0.03);
}
.news-notices .notices__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: #a3B5bd;
  margin-bottom: 32px;
}
.news-notices .notices__meta strong {
  font-weight: 400;
  color: #e9f8fb;
}
.news-notices .notices__clear-filters {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  color: #a3B5bd;
  font-weight: 400;
  letter-spacing: 1.3px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.news-notices .notices__clear-filters:hover {
  color: #e9f8fb;
}
.news-notices .notices__clear-filters--visible {
  opacity: 1;
  pointer-events: auto;
}
.news-notices .notices__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 32px;
}
.news-notices .notices__filter-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #a3B5bd;
  background: transparent;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all ease 200ms;
}
.news-notices .notices__filter-btn:hover {
  color: #e9f8fb;
  border-color: rgba(169, 252, 255, 0.5);
}
.news-notices .notices__filter-btn--active {
  color: #0a0e1a;
  background: #3ee9ef;
  border-color: #3ee9ef;
}
.news-notices .notices__filter-btn--active:hover {
  background: rgba(169, 252, 255, 0.5);
  border-color: rgba(169, 252, 255, 0.5);
  color: #0a0e1a;
}
.news-notices .notices__list {
  list-style: none;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
.news-notices .notices__row {
  position: relative;
  display: grid;
  grid-template-columns: 100px 160px 1fr 24px;
  align-items: center;
  gap: 0 24px;
  padding: 24px 16px;
  background: transparent;
  transition: all ease 200ms;
}
.news-notices .notices__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(62, 233, 239, 0.1) 29.81%, rgba(62, 233, 239, 0) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-notices .notices__row {
    grid-template-columns: 1fr 24px;
    grid-template-rows: auto auto;
    gap: 8px 16px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-notices .notices__row {
    padding: 24px 0px;
  }
}
.news-notices .notices__row:hover::before {
  opacity: 1;
}
.news-notices .notices__row:hover > span:not(.notices__row-arrow) {
  transform: translateX(5px);
}
.news-notices .notices__row:hover .notices__row-arrow {
  color: #3ee9ef;
  transform: translate(2px, -2px);
}
.news-notices .notices__row-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #a3B5bd;
  white-space: nowrap;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-notices .notices__row-date {
    grid-column: 1;
    grid-row: 1;
  }
}
.news-notices .notices__row-badge-wrap {
  display: flex;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-notices .notices__row-badge-wrap {
    grid-column: 1;
    grid-row: 2;
  }
}
.news-notices .notices__row-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #e9f8fb;
  line-height: 1.5;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-notices .notices__row-title {
    grid-column: 1/-1;
    grid-row: 3;
  }
}
a:hover .news-notices .notices__row-title {
  color: #3ee9ef;
}
.news-notices .notices__row-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3B5bd;
  transition: all ease 200ms;
  flex-shrink: 0;
  align-self: center;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-notices .notices__row-arrow {
    grid-column: 2;
    grid-row: 1;
  }
}
.news-notices .notices__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
  height: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  border: 1px solid;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-notices .notices__badge {
    width: 160px;
  }
}
.news-notices .notices__badge--notice {
  color: #3ee9ef;
  border-color: #3ee9ef;
}
.news-notices .notices__badge--press {
  color: #B29CFF;
  border-color: #B29CFF;
}
.news-notices .notices__badge--event-update {
  border-radius: 20px;
  height: 40px;
  color: #C0D362;
  border-color: #C0D362;
}
.news-notices .notices__badge--registration {
  color: #CC94CD;
  border-color: #CC94CD;
}

.news-article .article-header {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-article .article-header {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .article-header {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .article-header {
    padding-inline: 20px;
  }
}
.news-article .article-header__inner {
  max-width: 100%;
  padding: 80px 240px 80px;
  margin: 0 auto;
  background: rgba(14, 26, 36, 0.5);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .news-article .article-header__inner {
    padding: 100px 120px 100px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-article .article-header__inner {
    padding: 100px 60px 100px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .article-header__inner {
    padding: 48px 30px 48px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .article-header__inner {
    padding: 48px 20px 48px;
  }
}
.news-article .article-header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-article .article-header__meta {
    flex-wrap: wrap;
  }
}
.news-article .article-header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  height: 34px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 17px;
  color: #3ee9ef;
  border: 1px solid #3ee9ef;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}
.news-article .article-header__date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.news-article .article-header__author {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3B5bd;
}
.news-article .article-header__author::before {
  content: "·";
  margin-right: 16px;
  color: #a3B5bd;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .news-article .article-header__author::before {
    margin-right: 8px;
  }
}
.news-article .article-header__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 24px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .article-header__title {
    font-size: 1.75rem;
  }
}
.news-article .article-header__excerpt {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #a3B5bd;
}
.news-article .article-body {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-article .article-body {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .article-body {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .article-body {
    padding-inline: 20px;
  }
}
.news-article .article-body__inner {
  max-width: 100%;
  padding: 80px 240px 80px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .news-article .article-body__inner {
    padding: 100px 120px 100px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-article .article-body__inner {
    padding: 100px 60px 100px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .article-body__inner {
    padding: 48px 30px 48px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .article-body__inner {
    padding: 48px 20px 48px;
  }
}
.news-article .article-body__back {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}
.news-article .attachments {
  margin-top: 40px;
}
.news-article .attachments__heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 20px;
}
.news-article .attachments__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-article .attachments__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(6, 12, 18, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .attachments__item {
    padding: 12px 16px;
  }
}
@media (hover: hover) {
  .news-article .attachments__item:hover {
    border-color: #3ee9ef;
    background: rgba(14, 26, 36, 0.5);
  }
  .news-article .attachments__item:hover .attachments__download {
    color: #3ee9ef;
    border-color: #3ee9ef;
    background-color: rgba(62, 233, 239, 0.1);
  }
  .news-article .attachments__item:hover .attachments__download path {
    fill: #3ee9ef;
  }
}
.news-article .attachments__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-article .attachments__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e9f8fb;
}
.news-article .attachments__meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 3.25px;
  color: #3ee9ef;
}
.news-article .attachments__download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(62, 233, 239, 0.5);
  background-color: transparent;
  border-radius: 9999px;
  color: #a3B5bd;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.news-article .attachments__download path {
  transition: all ease 200ms;
}
.news-article .post-nav {
  position: relative;
  z-index: 0;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background-color: rgba(14, 26, 36, 0.8);
}
.news-article .post-nav__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .news-article .post-nav__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .post-nav__inner {
    padding-inline: 20px;
  }
}
.news-article .post-nav__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background-color: rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__inner::before {
    content: none;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__inner {
    grid-template-columns: 1fr;
  }
}
.news-article .post-nav__item {
  position: relative;
  padding: 60px 0;
  text-decoration: none;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .post-nav__item {
    padding: 40px 0;
  }
}
.news-article .post-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 50vw;
  background-color: transparent;
  transition: all ease 200ms;
}
.news-article .post-nav__item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 50vw;
  height: 1px;
  background-color: transparent;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__item::before, .news-article .post-nav__item::after {
    width: 100vw;
  }
}
.news-article .post-nav__item:hover::before {
  background-color: rgba(14, 26, 36, 0.8);
}
.news-article .post-nav__item:hover::after {
  background-color: #3ee9ef;
}
.news-article .post-nav__item--prev {
  padding-right: 40px;
}
.news-article .post-nav__item--prev::before, .news-article .post-nav__item--prev::after {
  right: 0;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__item--prev::before, .news-article .post-nav__item--prev::after {
    right: -40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .post-nav__item--prev::before, .news-article .post-nav__item--prev::after {
    right: -20px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__item--prev {
    border-right: none;
    border-bottom: 1px solid rgba(169, 252, 255, 0.3);
    padding-right: 0;
  }
}
.news-article .post-nav__item--next {
  padding-left: 40px;
  text-align: right;
}
.news-article .post-nav__item--next::before, .news-article .post-nav__item--next::after {
  left: 0;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__item--next::before, .news-article .post-nav__item--next::after {
    left: -40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .news-article .post-nav__item--next::before, .news-article .post-nav__item--next::after {
    left: -20px;
  }
}
.news-article .post-nav__item--next .post-nav__label {
  justify-content: flex-end;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__item--next .post-nav__label {
    justify-content: flex-start;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__item--next {
    padding-left: 0;
    text-align: left;
  }
}
.news-article .post-nav__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-article .post-nav__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9f8fb;
  line-height: 1.5;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .news-article .post-nav__title {
    font-size: 1.125rem;
  }
}

.side-events .event-header {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .event-header {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .event-header {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .event-header {
    padding-inline: 20px;
  }
}
.side-events .event-header__inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  max-width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px 100px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .event-header__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .event-header__inner {
    padding: 40px 30px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .event-header__inner {
    padding: 32px 20px;
  }
}
.side-events .event-header .page-title__dec-line {
  margin-bottom: 20px;
}
.side-events .event-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #a3B5bd;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .event-header__meta {
    font-size: 1rem;
  }
}
.side-events .event-header__meta-sep {
  color: #a3B5bd;
  padding: 0 4px;
}
.side-events .content-block {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .content-block {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .content-block {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .content-block {
    padding-inline: 20px;
  }
}
.side-events .content-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 80px;
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .content-block__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .side-events .content-block__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .content-block__inner {
    padding: 40px 0;
  }
}
.side-events .content-block__inner--reverse .content-block__media {
  order: 2;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .side-events .content-block__inner--reverse .content-block__media {
    order: 0;
  }
}
.side-events .content-block__inner--reverse .content-block__text {
  order: 1;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .side-events .content-block__inner--reverse .content-block__text {
    order: 1;
  }
}
.side-events .content-block__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 730/585;
}
.side-events .content-block__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.side-events .content-block__text {
  display: flex;
  flex-direction: column;
}
.side-events .content-block__eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3B5bd;
  margin-bottom: 10px;
}
.side-events .content-block__eyebrow-num {
  color: #3ee9ef;
}
.side-events .content-block__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: #e9f8fb;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .content-block__title {
    font-size: 1.75rem;
  }
}
.side-events .content-block__desc {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #a3B5bd;
}
.side-events .content-block__desc:not(:last-child) {
  margin-bottom: 32px;
}
.side-events .content-block__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 26px;
}
.side-events .content-block__list li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #a3B5bd;
}
.side-events .content-block__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #3ee9ef;
  border-radius: 50%;
}
.side-events .highlight {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .highlight {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .highlight {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .highlight {
    padding-inline: 20px;
  }
}
.side-events .highlight__inner {
  background: rgba(14, 26, 36, 0.5);
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px 100px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .highlight__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .highlight__inner {
    padding: 40px 30px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .highlight__inner {
    padding: 32px 20px;
  }
}
.side-events .highlight__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3B5bd;
  margin-bottom: 10px;
}
.side-events .highlight__eyebrow-num {
  color: #3ee9ef;
}
.side-events .highlight__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #e9f8fb;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .highlight__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .highlight__title {
    margin-bottom: 12px;
  }
}
.side-events .highlight__desc {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #e9f8fb;
  max-width: 1040px;
  margin: 0 auto;
}
.side-events .schedule {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .schedule {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .schedule {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .schedule {
    padding-inline: 20px;
  }
}
.side-events .schedule__inner {
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  max-width: 1920px;
  padding: 100px 80px;
  margin: 0 auto;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .side-events .schedule__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .side-events .schedule__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .schedule__inner {
    padding: 40px 0;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .schedule__inner {
    padding: 32px 0;
  }
}
.side-events .schedule__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e9f8fb;
  margin-bottom: 10px;
}
.side-events .schedule__eyebrow-num {
  color: #3ee9ef;
}
.side-events .schedule__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .schedule__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
}
.side-events .schedule__table {
  background-color: rgba(6, 12, 18, 0.85);
  width: 100%;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.side-events .schedule__th {
  padding: 32px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a3B5bd;
  text-align: left;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.side-events .schedule__th:first-child {
  width: 226px;
}
.side-events .schedule__th:last-child {
  width: 420px;
}
@media screen and (max-width: calc(1440px - 0.02px)) {
  .side-events .schedule__th:last-child {
    width: 310px;
  }
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .side-events .schedule__th:last-child {
    width: 210px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .side-events .schedule__th:last-child {
    width: auto;
  }
}
.side-events .schedule__tbody {
  background: transparent;
}
.side-events .schedule__tr {
  transition: background 0.18s ease;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
.side-events .schedule__tr:last-child {
  border-bottom: none;
}
@media (hover: hover) {
  .side-events .schedule__tr:hover {
    background: rgba(62, 233, 239, 0.03);
  }
}
.side-events .schedule__td {
  padding: 24px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #e9f8fb;
  vertical-align: middle;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .side-events .schedule__td {
    padding: 16px 16px;
    font-size: 0.8125rem;
  }
}
.side-events .schedule__td:last-child {
  border-bottom: none;
}
.side-events .schedule__td--time {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.side-events .schedule__td--program {
  font-size: 1.125rem;
  color: #e9f8fb;
  font-weight: 500;
}
.side-events .schedule__td--speaker {
  font-size: 1.125rem;
}
.side-events .schedule__td--empty {
  color: #a3B5bd;
}
.side-events .schedule__td:last-child {
  border-right: none;
}
.side-events .schedule__table-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.side-events .schedule__table-wrap::-webkit-scrollbar {
  display: none;
}
.side-events .schedule__table-wrap {
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
}
.side-events .schedule__table-wrap table {
  min-width: 760px;
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
}

.symposium .page-hero {
  margin-top: -55px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .page-hero {
    margin-top: 0px;
  }
}
.symposium .symposium-section {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium .symposium-section {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .symposium-section {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .symposium-section {
    padding-inline: 20px;
  }
}
.symposium .symposium-section.full-program, .symposium .symposium-section.keynotes, .symposium .symposium-section.poster, .symposium .symposium-section.resources {
  scroll-margin-top: 100px;
}
.symposium .symposium-section__inner {
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium .symposium-section__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .symposium-section__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .symposium-section__inner {
    padding: 24px 16px;
  }
}
.symposium .symposium-section__inner.-color-box-bg {
  background-color: rgba(14, 26, 36, 0.5);
}
.symposium .symposium-section--shaded .symposium .symposium-section__inner {
  background: rgba(14, 26, 36, 0.5);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
}
.symposium .symposium-section__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #3ee9ef;
  margin-bottom: 12px;
}
.symposium .symposium-section .page-title__dec-line {
  padding-bottom: 32px;
  margin-bottom: 20px;
}
.symposium .symposium-nav__tabs {
  display: flex;
  gap: 0;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.symposium .symposium-nav__tabs::-webkit-scrollbar {
  display: none;
}
.symposium .symposium-nav__tabs--wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium .symposium-nav__tabs--wrap {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .symposium-nav__tabs--wrap {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .symposium-nav__tabs--wrap {
    padding-inline: 20px;
  }
}
.symposium .symposium-nav__tabs--inner {
  padding: 0 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium .symposium-nav__tabs--inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .symposium-nav__tabs--inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .symposium-nav__tabs--inner {
    padding: 0;
  }
}
.symposium .symposium-nav__tab-btn {
  padding: 12px 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #a3B5bd;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all ease 200ms;
  white-space: nowrap;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .symposium-nav__tab-btn {
    font-size: 0.875rem;
    padding: 12px 12px;
  }
}
.symposium .symposium-nav__tab-btn:hover {
  color: #3ee9ef;
}
.symposium .symposium-nav__tab-btn--active {
  color: #3ee9ef;
  border-bottom-color: #3ee9ef;
}
.symposium .rich-card {
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 40px 240px;
}
@media screen and (max-width: calc(1680px - 0.02px)) {
  .symposium .rich-card {
    padding: 40px 120px;
  }
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium .rich-card {
    padding: 40px 60px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .rich-card {
    padding: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .rich-card {
    padding: 24px;
  }
}
.symposium .rich-card__body {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e9f8fb;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .rich-card__body {
    font-size: 1rem;
  }
}
.symposium .rich-card__body.-margin-double {
  margin-bottom: 64px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .rich-card__body.-margin-double {
    margin-bottom: 32px;
  }
}
.symposium .rich-card__image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .rich-card__image-wrap {
    margin-bottom: 16px;
  }
}
.symposium .rich-card__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.symposium .rich-card__caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #a3B5bd;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .rich-card__caption {
    margin-bottom: 32px;
  }
}
.symposium .rich-card__sub-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3ee9ef;
  letter-spacing: 3.5px;
  margin-bottom: 10px;
}
.symposium .rich-card__sub-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #e9f8fb;
  line-height: 1.2;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .rich-card__sub-title {
    font-size: 1.75rem;
  }
}
.symposium .rich-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 26px;
}
.symposium .rich-card__list li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #e9f8fb;
  line-height: 1.6;
}
.symposium .rich-card__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #3ee9ef;
  border-radius: 50%;
}
.symposium .day-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.symposium .day-filter__btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #a3B5bd;
  background: transparent;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all ease 200ms;
}
.symposium .day-filter__btn:hover {
  color: #e9f8fb;
  border-color: rgba(169, 252, 255, 0.5);
}
.symposium .day-filter__btn--active {
  color: #000308;
  background: #3ee9ef;
  border-color: #3ee9ef;
}
.symposium .keynote-flex {
  overflow-x: auto;
  overflow-y: hidden;
}
.symposium .keynote-flex__inner {
  max-width: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: nowrap;
  margin-bottom: 5px;
}
.symposium .keynote-card {
  flex: 0 0 calc((100% - 48px) / 3);
  display: block;
  text-decoration: none;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all ease 250ms;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .symposium .keynote-card {
    flex: 0 0 calc((100% - 48px) / 2.5);
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .keynote-card {
    flex: 0 0 calc((100% - 24px) / 1.25);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .keynote-card {
    flex: 0 0 calc(100% - 48px);
  }
}
@media (hover: hover) {
  .symposium .keynote-card:hover {
    border-color: #3ee9ef;
  }
  .symposium .keynote-card:hover .keynote-card__media img {
    transform: scale(1.1);
  }
}
.symposium .keynote-card__media {
  position: relative;
  aspect-ratio: 491/442;
  overflow: hidden;
}
.symposium .keynote-card__media::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.symposium .keynote-card__media img {
  transition: all ease 250ms;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.symposium .keynote-card__body {
  padding: 30px 28px 24px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .symposium .keynote-card__body {
    padding: 20px 18px 14px;
  }
}
.symposium .keynote-card__location {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #3ee9ef;
  letter-spacing: 3.25px;
  margin-bottom: 16px;
}
.symposium .keynote-card__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9f8fb;
  margin-bottom: 8px;
  line-height: 1.3;
}
.symposium .keynote-card__affiliation {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
  margin-bottom: 16px;
}
.symposium .keynote-card__talk-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #e9f8fb;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: start;
}
.symposium .poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .symposium .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .poster-grid {
    grid-template-columns: 1fr;
  }
}
.symposium .poster-card {
  background: rgba(6, 12, 18, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all ease 200ms;
}
@media (hover: hover) {
  .symposium .poster-card:hover {
    border-color: #3ee9ef;
  }
  .symposium .poster-card:hover .poster-card__link::after {
    width: 100%;
  }
  .symposium .poster-card:hover .poster-card__link > div {
    margin-left: -10px;
  }
  .symposium .poster-card:hover .poster-card__link > img {
    transform-origin: 100% 50%;
    transform: scale(0);
  }
}
.symposium .poster-card__body {
  padding: 28px 32px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .poster-card__body {
    padding: 18px 22px;
  }
}
.symposium .poster-card__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 3.25px;
  color: #3ee9ef;
  margin-bottom: 12px;
}
.symposium .poster-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e9f8fb;
  margin-bottom: 4px;
  line-height: 1.5;
}
.symposium .poster-card__meta {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #a3B5bd;
  margin-bottom: 12px;
}
.symposium .poster-card__link {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  color: #3ee9ef;
  width: 100%;
  transition: all ease 200ms;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62, 233, 239, 0.5);
  overflow: hidden;
}
.symposium .poster-card__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3ee9ef;
  transition: all ease 500ms;
}
.symposium .poster-card__link > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: all ease 400ms;
  margin-left: -33px;
}
.symposium .poster-card__link > img {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.symposium .resources-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.symposium .resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium .resource-item {
    padding: 12px 16px;
  }
}
@media (hover: hover) {
  .symposium .resource-item:hover {
    border-color: #3ee9ef;
    background: rgba(14, 26, 36, 0.5);
  }
  .symposium .resource-item:hover .resource-item__download {
    background-color: rgba(62, 233, 239, 0.1);
    color: #3ee9ef;
    border-color: rgba(62, 233, 239, 0.4);
  }
}
.symposium .resource-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.symposium .resource-item__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e9f8fb;
  margin-bottom: 6px;
}
.symposium .resource-item__meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 3.25px;
  color: #3ee9ef;
}
.symposium .resource-item__meta span {
  color: #a3B5bd;
}
.symposium .resource-item__download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #a3B5bd;
  flex-shrink: 0;
  transition: all ease 200ms;
}
.symposium .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium .resources-grid {
    grid-template-columns: 1fr;
  }
}

.k-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 3, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .k-modal {
    padding: 16px 12px;
    align-items: flex-end;
  }
}
.k-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.k-modal--open .k-modal__box {
  transform: translateY(0);
  opacity: 1;
}
.k-modal__box {
  position: relative;
  width: 100%;
  max-width: 1056px;
  max-height: 90vh;
  background: rgba(14, 26, 36, 0.5);
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .k-modal__box {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
  }
}
.k-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(6, 12, 18, 0.85);
  padding: 32px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  flex-shrink: 0;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .k-modal__header {
    padding: 16px 20px;
  }
}
.k-modal__header-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.k-modal__location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3ee9ef;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.k-modal__time {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #5d6e76;
  letter-spacing: 0.06em;
}
.k-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 9999px;
  color: #e9f8fb;
  background: transparent;
  cursor: pointer;
  transition: all ease 200ms;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .k-modal__close {
    width: 44px;
    height: 44px;
  }
}
.k-modal__close:hover {
  background-color: rgba(62, 233, 239, 0.1);
  border-color: #3ee9ef;
  color: #e9f8fb;
}
.k-modal__body {
  display: grid;
  grid-template-columns: 491px 1fr;
  flex: 1;
  min-height: 0;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .k-modal__body {
    grid-template-columns: 390px 1fr;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .k-modal__body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
}
.k-modal__media {
  position: relative;
  overflow: hidden;
  background: rgba(6, 12, 18, 0.8);
  flex-shrink: 0;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .k-modal__media {
    width: 100%;
    aspect-ratio: 500/480;
  }
}
.k-modal__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.k-modal__content {
  padding: 32px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  /* ★ 修正 3：配合 body 的 md 斷點，將內部捲動關閉，讓文字自然撐開向下延伸 */
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .k-modal__content {
    overflow-y: visible;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .k-modal__content {
    padding: 20px 20px;
  }
}
.k-modal__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  line-height: 1.1;
  margin-bottom: 8px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .k-modal__name {
    font-size: 1.5rem;
  }
}
.k-modal__title-label, .k-modal__abstract-label, .k-modal__bio-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3ee9ef;
  margin-bottom: 6px;
}
.k-modal__affiliation {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: #5d6e76;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 30px;
}
.k-modal__talk-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e9f8fb;
  line-height: 1.6;
  margin-bottom: 20px;
}
.k-modal__abstract, .k-modal__bio {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #e9f8fb;
  line-height: 1.8;
}
.k-modal__abstract {
  margin-bottom: 20px;
}

.symposium-program-at-a-glance .program-intro {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro {
    padding-inline: 20px;
  }
}
.symposium-program-at-a-glance .program-intro__inner {
  background: linear-gradient(rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  padding: 100px 80px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro__inner {
    padding: 48px 40px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro__inner {
    padding: 24px 16px 48px;
  }
}
.symposium-program-at-a-glance .program-intro .page-desc {
  margin-bottom: 72px;
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .symposium-program-at-a-glance .program-intro .page-desc {
    margin-bottom: 36px;
  }
}
.symposium-program-at-a-glance .schedule-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(169, 252, 255, 0.3);
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.symposium-program-at-a-glance .schedule-tabs::-webkit-scrollbar {
  display: none;
}
.symposium-program-at-a-glance .schedule-tabs__btn {
  padding: 16px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #a3B5bd;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all ease 200ms;
  white-space: nowrap;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium-program-at-a-glance .schedule-tabs__btn {
    font-size: 1rem;
    padding: 8px 12px;
  }
}
.symposium-program-at-a-glance .schedule-tabs__btn:hover {
  color: #3ee9ef;
}
.symposium-program-at-a-glance .schedule-tabs__btn--active {
  color: #3ee9ef;
  border-bottom-color: #3ee9ef;
}
.symposium-program-at-a-glance .schedule-panel {
  display: none;
}
.symposium-program-at-a-glance .schedule-panel--active {
  display: block;
}
.symposium-program-at-a-glance .schedule-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
  font-size: 0.75rem;
  color: #a3B5bd;
  font-weight: 700;
  border-radius: 14px;
  border: 1px dashed rgba(169, 252, 255, 0.3);
  background: rgba(14, 26, 36, 0.5);
  letter-spacing: 1.8px;
  text-align: center;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium-program-at-a-glance .schedule-empty {
    padding: 80px 40px;
  }
}
.symposium-program-at-a-glance .schedule-table-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.symposium-program-at-a-glance .schedule-table-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #0A141C 100%);
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .symposium-program-at-a-glance .schedule-table-container::after {
    content: none;
  }
}
.symposium-program-at-a-glance .event-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(169, 252, 255, 0.3);
  white-space: nowrap;
  margin-bottom: 2px;
}
.symposium-program-at-a-glance .schedule-disclaimer {
  margin-top: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #a3B5bd;
  line-height: 1.6;
}
.symposium-program-at-a-glance .c-btn {
  margin-top: 64px;
  min-width: 353px;
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .symposium-program-at-a-glance .c-btn {
    min-width: 100%;
    margin-top: 32px;
  }
}

.error .hero {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 460px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .error .hero {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .error .hero {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .error .hero {
    padding-inline: 20px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .error .hero {
    min-height: 320px;
    padding: 60px 24px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .error .hero {
    padding: 40px 24px;
  }
}
.error .hero__code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3ee9ef;
  margin-bottom: 28px;
}
.error .hero__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #e9f8fb;
  max-width: 1050px;
  margin-bottom: 20px;
}
.error .hero__subtitle {
  max-width: 1520px;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e9f8fb;
  margin-bottom: 40px;
}
.error .browse {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 120px;
}
@media screen and (max-width: calc(1280px - 0.02px)) {
  .error .browse {
    padding-inline: 80px;
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .error .browse {
    padding-inline: 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .error .browse {
    padding-inline: 20px;
  }
}
.error .browse__inner {
  padding: 100px 80px;
  margin: 0 auto;
  border-top: 1px solid rgba(169, 252, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.5) 0%, rgba(0, 3, 8, 0) 100%);
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .error .browse__inner {
    padding: 50px 40px;
  }
}
@media screen and (max-width: calc(576px - 0.02px)) {
  .error .browse__inner {
    padding: 25px 20px;
  }
}
.error .browse__heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-top: 20px;
  margin-bottom: 72px;
}
@media screen and (max-width: calc(1024px - 0.02px)) {
  .error .browse__heading {
    margin-top: 0px;
    margin-bottom: 36px;
  }
}
.error .browse__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: calc(1440px - 0.02px)) {
  .error .browse__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: calc(768px - 0.02px)) {
  .error .browse__grid {
    grid-template-columns: 1fr;
  }
}
.error .card {
  border: 1px solid rgba(169, 252, 255, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}
@media (hover: hover) {
  .error .card:hover {
    border-color: rgba(62, 233, 239, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(62, 233, 239, 0.08);
  }
}
.error .card__number {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #3ee9ef;
  margin-bottom: 12px;
}
.error .card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e9f8fb;
  margin-bottom: 4px;
}
.error .card__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  color: #a3B5bd;
}/*# sourceMappingURL=main.css.map */