@charset "UTF-8";
:root {
  --color-primary: #e31c79;
  --color-secondary: #7928ca;
  --color-tertiary: #00b8e4;
  --color-bg-main: #0a0b0f;
  --color-bg-secondary: #12141c;
  --color-bg-tertiary: #1a1d28;
  --color-text-primary: #e8e4df;
  --color-text-secondary: #7a7a7a;
  --color-text-tertiary: #444444;
  --color-border-primary: rgba(114, 114, 114, 0.747);
  --color-border-secondary: rgba(232, 228, 223, 0.06);
  --gradient-primary: linear-gradient(135deg, #e31c79, #7928ca, #00b8e4);
  --gradient-accent: linear-gradient(90deg, #e31c79, #00b8e4);
  --font-display: Instrument Sans, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  --font-mono: Space Mono, Courier New, monospace;
  --font-body: Instrument Sans, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0b0f;
  color: #e8e4df;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}
body.is-mobile {
  -webkit-tap-highlight-color: rgba(227, 28, 121, 0.2);
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.frame-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border: 16px solid #0a0b0f;
  background: #0a0b0f;
  position: relative;
}
.frame-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 184, 228, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 184, 228, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .frame-container {
    border-width: 8px;
  }
}
@media (max-width: 480px) {
  .frame-container {
    border-width: 4px;
  }
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  color: rgba(227, 28, 121, 0.25);
  z-index: 3;
  pointer-events: none;
  opacity: 0.6;
}
.frame-corner--tl {
  top: 8px;
  left: 8px;
}
.frame-corner--tr {
  top: 8px;
  right: 8px;
}
.frame-corner--bl {
  bottom: 8px;
  left: 8px;
}
.frame-corner--br {
  bottom: 8px;
  right: 8px;
}
@media (max-width: 768px) {
  .frame-corner {
    width: 24px;
    height: 24px;
  }
}

.scrollable-content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(114, 114, 114, 0.747);
  scroll-timeline-name: --main-scroll;
  scroll-timeline-axis: block;
}
.scrollable-content::-webkit-scrollbar {
  width: 6px;
}
.scrollable-content::-webkit-scrollbar-track {
  background: #0a0b0f;
  border-left: 1px solid rgba(114, 114, 114, 0.747);
}
.scrollable-content::-webkit-scrollbar-thumb {
  background: rgba(227, 28, 121, 0.3);
}
.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: #e31c79;
}

.section-header {
  padding: 4rem 4rem 2rem;
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  position: relative;
}
.section-header--accent {
  background: #e31c79;
}
.section-header--accent .section-number,
.section-header--accent .section-sub,
.section-header--accent .section-heading {
  color: #e8e4df;
}
.section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#e31c79), to(#00b8e4));
  background: linear-gradient(90deg, #e31c79, #00b8e4);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 768px) {
  .section-header {
    padding: 3rem 2rem 1rem;
  }
}
@media (max-width: 480px) {
  .section-header {
    padding: 2rem 1.5rem 0.5rem;
  }
}

.section-number {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #e31c79;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e4df;
  line-height: 1.05;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  * {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
         text-size-adjust: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.001ms !important;
            animation-duration: 0.001ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.001ms !important;
            transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-section::before {
    -webkit-animation: none;
            animation: none;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0b0f;
  color: #f1f2f1;
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(600px, 2fr) auto minmax(220px, 1fr); /* intro text */
  height: 92px;
}
.header-inner > * {
  border-left: 1px solid rgba(114, 114, 114, 0.747);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-inner > *:last-child {
  border-right: 0;
}

.header-brand {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  padding: 0 26px;
}

.logo-link {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
}

.logo {
  width: 52px;
  height: 52px;
  background: url("/assets/logo/logo.svg") center/contain no-repeat;
  text-indent: -9999px;
}

.header-status {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 9px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f1f2f1;
}
.header-status .blink {
  -webkit-animation: hdr-blink 1.4s steps(2) infinite;
          animation: hdr-blink 1.4s steps(2) infinite;
}

@-webkit-keyframes hdr-blink {
  50% {
    opacity: 0.25;
  }
}

@keyframes hdr-blink {
  50% {
    opacity: 0.25;
  }
}
.nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 0;
}

.nav-link {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(241, 242, 241, 0.45);
  text-decoration: none;
  padding: 6px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.nav-link + .nav-link::before {
  content: "/";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 14px;
  color: rgba(227, 28, 121, 0.35);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  pointer-events: none;
}
.nav-link::after {
  display: none;
}
.nav-link:hover {
  color: #f1f2f1;
}
.nav-link:hover + .nav-link::before {
  color: rgba(227, 28, 121, 0.6);
}
.nav-link.active, .nav-link[aria-current=page] {
  color: #e31c79;
}
.nav-link.active + .nav-link::before, .nav-link[aria-current=page] + .nav-link::before {
  color: #e31c79;
}
.nav-link:focus-visible {
  outline: 2px solid #f1f2f1;
  outline-offset: 3px;
  border-radius: 2px;
}

.header-icons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-icon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  place-items: center;
  width: 64px;
  color: #f1f2f1;
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.header-icon + .header-icon {
  border-top: 1px solid rgba(114, 114, 114, 0.747);
}
.header-icon:hover {
  background: rgba(0, 0, 0, 0.08);
}
.header-icon:focus-visible {
  outline: 2px solid #f1f2f1;
  outline-offset: -4px;
}
.header-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #f1f2f1;
}

.header-intro {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-intro > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: #f1f2f1;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.header-intro > div + div {
  border-top: 1px solid rgba(114, 114, 114, 0.747);
}

.header-hire {
  font-weight: 600;
  margin-left: 6px;
  color: #f1f2f1;
  text-decoration: none;
}
.header-hire:hover {
  text-decoration: underline;
}
.header-hire:focus-visible {
  outline: 2px solid #f1f2f1;
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 60px;
    padding: 0 14px;
  }
  .header-inner > * {
    border-left: 0;
  }
  .header-brand {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    gap: 0;
    padding: 0;
    border: 0;
  }
  .logo {
    width: 40px;
    height: 40px;
  }
  .header-status,
  .header-inner > .nav,
  .header-icons,
  .header-intro {
    display: none;
  }
}
@media (max-width: 480px) {
  .logo {
    width: 36px;
    height: 36px;
  }
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  min-height: 44px;
  color: #f1f2f1;
  text-decoration: none;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-toggle:hover {
  color: #e31c79;
  border-color: rgba(227, 28, 121, 0.5);
}
.nav-toggle:focus-visible {
  outline: 2px solid #e31c79;
  outline-offset: 2px;
}

.nav-toggle-label::before {
  content: "[";
  color: rgba(227, 28, 121, 0.7);
}
.nav-toggle-label::after {
  content: "]";
  color: rgba(227, 28, 121, 0.7);
}

.nav-toggle-bars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 20px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav-toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: background-color 0.25s ease, opacity 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: background-color 0.25s ease, opacity 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, opacity 0.2s ease;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, opacity 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-toggle:active .nav-toggle-bars span {
  -webkit-transform: scaleX(0.82);
          transform: scaleX(0.82);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 901;
  width: min(86vw, 360px);
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #0a0b0f;
  border-left: 1px solid #e31c79;
  -webkit-box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
          box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.46s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-nav::-webkit-scrollbar {
  display: none;
}
.mobile-nav {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 184, 228, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 184, 228, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.mobile-nav-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mobile-nav-title {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(241, 242, 241, 0.55);
}

.mobile-nav-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  position: relative;
  width: 40px;
  height: 40px;
  color: #f1f2f1;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mobile-nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.mobile-nav-close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav-close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav-close:hover {
  color: #e31c79;
}
.mobile-nav-close:focus-visible {
  outline: 2px solid #e31c79;
  outline-offset: 2px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.mobile-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 14px;
  padding: 16px 20px;
  min-height: 52px;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(241, 242, 241, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
  -webkit-transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-link .mnl-index {
  font-size: 10px;
  color: rgba(227, 28, 121, 0.6);
  letter-spacing: 0.1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
}
.mobile-nav-link .mnl-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
  color: #e31c79;
  background: rgba(227, 28, 121, 0.06);
  padding-left: 26px;
}
.mobile-nav-link.active {
  color: #e31c79;
  background: rgba(227, 28, 121, 0.08);
}
.mobile-nav-link.active .mnl-index {
  color: #e31c79;
}
.mobile-nav-link:focus-visible {
  outline: 2px solid #e31c79;
  outline-offset: -2px;
}

.mobile-nav-foot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px;
  border-top: 1px solid rgba(114, 114, 114, 0.747);
  background: rgba(18, 20, 28, 0.35);
}

.mobile-nav-cta {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: rgba(241, 242, 241, 0.75);
  margin-bottom: 18px;
}
.mobile-nav-cta a {
  color: #e31c79;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 28, 121, 0.4);
}
.mobile-nav-cta a:hover {
  border-bottom-color: #e31c79;
}
.mobile-nav-cta a:focus-visible {
  outline: 2px solid #e31c79;
  outline-offset: 2px;
}

.mobile-nav-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.mobile-nav-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #f1f2f1;
  border: 1px solid rgba(114, 114, 114, 0.747);
  text-decoration: none;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mobile-nav-socials a:hover {
  color: #e31c79;
  border-color: rgba(227, 28, 121, 0.5);
}
.mobile-nav-socials a:focus-visible {
  outline: 2px solid #e31c79;
  outline-offset: 2px;
}
.mobile-nav-socials a .mobile-nav-icon {
  width: 18px;
  height: 18px;
  display: block;
  background-color: currentColor;
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}

.mobile-nav-meta {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(241, 242, 241, 0.4);
}

#mobile-nav:target {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body:has(#mobile-nav:target) .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body:has(#mobile-nav:target) .mobile-nav-link {
  -webkit-animation: mnav-link-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
          animation: mnav-link-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
body:has(#mobile-nav:target) .mobile-nav-link:nth-child(1) {
  -webkit-animation-delay: 0.13s;
          animation-delay: 0.13s;
}
body:has(#mobile-nav:target) .mobile-nav-link:nth-child(2) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
body:has(#mobile-nav:target) .mobile-nav-link:nth-child(3) {
  -webkit-animation-delay: 0.23s;
          animation-delay: 0.23s;
}
body:has(#mobile-nav:target) .mobile-nav-link:nth-child(4) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
body:has(#mobile-nav:target) .mobile-nav-link:nth-child(5) {
  -webkit-animation-delay: 0.33s;
          animation-delay: 0.33s;
}
body:has(#mobile-nav:target) .mobile-nav-link:nth-child(6) {
  -webkit-animation-delay: 0.38s;
          animation-delay: 0.38s;
}
body:has(#mobile-nav:target) .mobile-nav-close {
  -webkit-animation: mnav-close-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s backwards;
          animation: mnav-close-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s backwards;
}

@-webkit-keyframes mnav-close-in {
  from {
    opacity: 0;
    -webkit-transform: rotate(-90deg) scale(0.6);
            transform: rotate(-90deg) scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}

@keyframes mnav-close-in {
  from {
    opacity: 0;
    -webkit-transform: rotate(-90deg) scale(0.6);
            transform: rotate(-90deg) scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}
.scrollable-content:has(#mobile-nav:target) {
  overflow: hidden;
}

@-webkit-keyframes mnav-link-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes mnav-link-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 1100px) {
  .nav-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .nav-backdrop {
    display: block;
  }
  .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .frame-container {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav {
    -webkit-transition: none;
    transition: none;
  }
  .nav-backdrop {
    -webkit-transition: none;
    transition: none;
  }
  .nav-toggle-bars span {
    -webkit-transition: none;
    transition: none;
  }
  .mobile-nav-close {
    -webkit-transition: none;
    transition: none;
    -webkit-animation: none;
            animation: none;
  }
  .mobile-nav-close:hover {
    -webkit-transform: none;
            transform: none;
  }
  body:has(#mobile-nav:target) .mobile-nav-link,
  body:has(#mobile-nav:target) .mobile-nav-close {
    -webkit-animation: none;
            animation: none;
  }
}
@media (max-width: 768px) {
  .header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 11, 15, 0.92)), to(rgba(10, 11, 15, 0)));
    background: linear-gradient(to bottom, rgba(10, 11, 15, 0.92), rgba(10, 11, 15, 0));
    border-bottom: 0;
  }
}
.footer {
  background: #e31c79;
  padding: 3rem 4rem 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem 1.5rem;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.footer-name {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e8e4df;
}

.footer-tagline {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(232, 228, 223, 0.72);
  max-width: 34ch;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3rem;
}
@media (max-width: 1100px) {
  .footer-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem 3rem;
  }
}
@media (max-width: 480px) {
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  min-width: 128px;
}
@media (max-width: 1100px) {
  .footer-column {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 480px) {
  .footer-column {
    min-width: 0;
  }
}

.footer-column-title {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8e4df;
  margin-bottom: 0.5rem;
}

.footer-column a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 0;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  line-height: 1.2;
  color: rgba(232, 228, 223, 0.82);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #0a0b0f;
}
.footer-column a:focus-visible {
  outline: 2px solid #0a0b0f;
  outline-offset: 2px;
}

.footer-badge {
  display: inline-block;
  margin-left: 0.55em;
  padding: 2px 6px;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e31c79;
  background: #e8e4df;
  border-radius: 2px;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(232, 228, 223, 0.18);
}

.footer-bottom[data-animate] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.footer-date + .footer-copy::before {
  content: "•";
  margin-right: 0.5rem;
  color: rgba(232, 228, 223, 0.35);
}
@media (max-width: 480px) {
  .footer-date + .footer-copy::before {
    content: none;
  }
}

.footer-date,
.footer-copy {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232, 228, 223, 0.6);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0b0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  pointer-events: none;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: preloader-crt-off 0.62s cubic-bezier(0.6, 0, 0.4, 1) 3.15s forwards;
          animation: preloader-crt-off 0.62s cubic-bezier(0.6, 0, 0.4, 1) 3.15s forwards;
}
.preloader--done {
  -webkit-animation: none;
          animation: none;
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes preloader-crt-off {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
    opacity: 1;
  }
  34% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1.55);
            filter: brightness(1.55);
  }
  55% {
    -webkit-transform: scale(1.02, 0.006);
            transform: scale(1.02, 0.006);
    -webkit-filter: brightness(7);
            filter: brightness(7);
  }
  80% {
    -webkit-transform: scale(0.0024, 0.006);
            transform: scale(0.0024, 0.006);
    -webkit-filter: brightness(11);
            filter: brightness(11);
  }
  92% {
    -webkit-transform: scale(0.0024, 0.006);
            transform: scale(0.0024, 0.006);
    -webkit-filter: brightness(11);
            filter: brightness(11);
    opacity: 0.95;
  }
  100% {
    -webkit-transform: scale(0.0024, 0.006);
            transform: scale(0.0024, 0.006);
    -webkit-filter: brightness(2);
            filter: brightness(2);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes preloader-crt-off {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
    opacity: 1;
  }
  34% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1.55);
            filter: brightness(1.55);
  }
  55% {
    -webkit-transform: scale(1.02, 0.006);
            transform: scale(1.02, 0.006);
    -webkit-filter: brightness(7);
            filter: brightness(7);
  }
  80% {
    -webkit-transform: scale(0.0024, 0.006);
            transform: scale(0.0024, 0.006);
    -webkit-filter: brightness(11);
            filter: brightness(11);
  }
  92% {
    -webkit-transform: scale(0.0024, 0.006);
            transform: scale(0.0024, 0.006);
    -webkit-filter: brightness(11);
            filter: brightness(11);
    opacity: 0.95;
  }
  100% {
    -webkit-transform: scale(0.0024, 0.006);
            transform: scale(0.0024, 0.006);
    -webkit-filter: brightness(2);
            filter: brightness(2);
    opacity: 0;
    visibility: hidden;
  }
}
.preloader-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  width: min(340px, 82vw);
  position: relative;
  z-index: 1;
}

.preloader-logo {
  width: min(190px, 52vw);
  -webkit-filter: drop-shadow(0 0 14px rgba(227, 28, 121, 0.55));
          filter: drop-shadow(0 0 14px rgba(227, 28, 121, 0.55));
  -webkit-animation: preloader-logo-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
          animation: preloader-logo-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.preloader-logo svg {
  width: 100%;
  height: auto;
  display: block;
}
.preloader-logo svg path {
  fill-opacity: 0;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  stroke-width: 1.6;
}
.preloader-logo svg .st1 {
  stroke: #fff;
  -webkit-animation: preloader-stroke-draw 1.5s ease 0.65s forwards, preloader-fill-in 0.5s ease 2s forwards;
          animation: preloader-stroke-draw 1.5s ease 0.65s forwards, preloader-fill-in 0.5s ease 2s forwards;
}
.preloader-logo svg .st0 {
  stroke: #e31c79;
  -webkit-animation: preloader-stroke-draw 1.1s ease 0.9s forwards, preloader-fill-in 0.5s ease 2s forwards;
          animation: preloader-stroke-draw 1.1s ease 0.9s forwards, preloader-fill-in 0.5s ease 2s forwards;
}
.preloader-logo svg .st2 {
  stroke: #00b8e4;
  -webkit-animation: preloader-stroke-draw 1s ease 1.1s forwards, preloader-fill-in 0.5s ease 2s forwards;
          animation: preloader-stroke-draw 1s ease 1.1s forwards, preloader-fill-in 0.5s ease 2s forwards;
}

@-webkit-keyframes preloader-stroke-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes preloader-stroke-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes preloader-fill-in {
  to {
    fill-opacity: 1;
    stroke-opacity: 0;
  }
}
@keyframes preloader-fill-in {
  to {
    fill-opacity: 1;
    stroke-opacity: 0;
  }
}
@-webkit-keyframes preloader-logo-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes preloader-logo-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.preloader-progress {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  -webkit-animation: preloader-fade-up 0.5s ease 0.7s both;
          animation: preloader-fade-up 0.5s ease 0.7s both;
}

.preloader-bar {
  width: 100%;
  height: 15px;
  border: 2px solid rgba(227, 28, 121, 0.45);
  padding: 2px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 12px rgba(227, 28, 121, 0.18);
          box-shadow: inset 0 0 12px rgba(227, 28, 121, 0.18);
}

.preloader-fill {
  height: 100%;
  width: 0;
  border-radius: 1px;
  background: repeating-linear-gradient(90deg, #e31c79 0 9px, #12141c 9px 12px);
  -webkit-box-shadow: 0 0 10px rgba(227, 28, 121, 0.55);
          box-shadow: 0 0 10px rgba(227, 28, 121, 0.55);
  -webkit-animation: preloader-fill-progress 2.45s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
          animation: preloader-fill-progress 2.45s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

@-webkit-keyframes preloader-fill-progress {
  0% {
    width: 0%;
  }
  20% {
    width: 24%;
  }
  50% {
    width: 60%;
  }
  80% {
    width: 86%;
  }
  100% {
    width: 100%;
  }
}

@keyframes preloader-fill-progress {
  0% {
    width: 0%;
  }
  20% {
    width: 24%;
  }
  50% {
    width: 60%;
  }
  80% {
    width: 86%;
  }
  100% {
    width: 100%;
  }
}
.preloader-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.preloader-label,
.preloader-pct {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a7a7a;
  text-shadow: 0 0 7px rgba(0, 184, 228, 0.25);
}

.preloader-pct {
  color: #e8e4df;
  -webkit-animation: preloader-fade-up 0.5s ease 0.7s both;
          animation: preloader-fade-up 0.5s ease 0.7s both;
}

.preloader-tagline {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7a7a7a;
  text-align: center;
  -webkit-animation: preloader-fade-up 0.5s ease 1.5s both;
          animation: preloader-fade-up 0.5s ease 1.5s both;
}

@-webkit-keyframes preloader-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes preloader-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.crt-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.34) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

.crt-roll {
  position: absolute;
  left: 0;
  right: 0;
  height: 26%;
  z-index: 3;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(0, 184, 228, 0.05)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 184, 228, 0.05) 50%, rgba(255, 255, 255, 0));
  -webkit-animation: preloader-roll 6.5s linear infinite;
          animation: preloader-roll 6.5s linear infinite;
}

@-webkit-keyframes preloader-roll {
  from {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
  to {
    -webkit-transform: translateY(400%);
            transform: translateY(400%);
  }
}

@keyframes preloader-roll {
  from {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
  to {
    -webkit-transform: translateY(400%);
            transform: translateY(400%);
  }
}
.crt-vig {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.62) 100%);
}

.crt-flash {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  z-index: 4;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 16px 5px #fff, 0 0 46px 14px #e31c79;
          box-shadow: 0 0 16px 5px #fff, 0 0 46px 14px #e31c79;
  opacity: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-animation: preloader-flashline 0.62s linear 3.15s forwards;
          animation: preloader-flashline 0.62s linear 3.15s forwards;
}

@-webkit-keyframes preloader-flashline {
  0%, 52% {
    opacity: 0;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  56% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  80% {
    opacity: 1;
    -webkit-transform: scaleX(0.02);
            transform: scaleX(0.02);
  }
  96% {
    opacity: 1;
    -webkit-transform: scaleX(0.02);
            transform: scaleX(0.02);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0.02);
            transform: scaleX(0.02);
  }
}

@keyframes preloader-flashline {
  0%, 52% {
    opacity: 0;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  56% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  80% {
    opacity: 1;
    -webkit-transform: scaleX(0.02);
            transform: scaleX(0.02);
  }
  96% {
    opacity: 1;
    -webkit-transform: scaleX(0.02);
            transform: scaleX(0.02);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0.02);
            transform: scaleX(0.02);
  }
}
.strips {
  display: none;
}

.site-content {
  opacity: 0;
  -webkit-animation: site-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 3.7s forwards;
          animation: site-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 3.7s forwards;
}
.site-content--visible {
  -webkit-animation: none;
          animation: none;
  opacity: 1;
}

@-webkit-keyframes site-reveal {
  from {
    opacity: 0.15;
    -webkit-filter: brightness(0.55) saturate(0.6);
            filter: brightness(0.55) saturate(0.6);
  }
  to {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes site-reveal {
  from {
    opacity: 0.15;
    -webkit-filter: brightness(0.55) saturate(0.6);
            filter: brightness(0.55) saturate(0.6);
  }
  to {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .preloader {
    -webkit-animation: preloader-fadeout 0.4s linear 1.1s forwards;
            animation: preloader-fadeout 0.4s linear 1.1s forwards;
  }
  .preloader-logo,
  .preloader-progress,
  .preloader-pct,
  .preloader-tagline,
  .preloader-fill,
  .preloader-logo svg .st0,
  .preloader-logo svg .st1,
  .preloader-logo svg .st2 {
    -webkit-animation: none !important;
            animation: none !important;
  }
  .preloader-fill {
    width: 100%;
  }
  .preloader-logo svg path {
    fill-opacity: 1;
    stroke-opacity: 0;
  }
  .crt-roll,
  .crt-flash {
    display: none;
  }
  .site-content {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1;
  }
  @-webkit-keyframes preloader-fadeout {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  @keyframes preloader-fadeout {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
}
@media (max-width: 480px) {
  .preloader-inner {
    gap: 2rem;
  }
  .preloader-logo {
    width: min(150px, 58vw);
  }
  .preloader-tagline {
    font-size: 7px;
    letter-spacing: 0.15em;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: auto;
  background: #0a0b0f;
  color: #f1f2f1;
  overflow: hidden;
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  display: block;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.hero-gallery-wrap {
  position: relative;
  height: clamp(300px, 50vh, 540px);
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
}

.hero-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-gallery-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 100%;
  -webkit-animation: hero-marquee 55s linear infinite;
          animation: hero-marquee 55s linear infinite;
  will-change: transform;
}

.hero-gallery:hover .hero-gallery-track,
.hero-gallery:focus-within .hero-gallery-track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes hero-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes hero-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
.hero-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28vw;
          flex: 0 0 28vw;
  min-width: 300px;
  max-width: 440px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1px solid #f1f2f1;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hero-card:focus-visible {
  outline: 3px solid #f1f2f1;
  outline-offset: -3px;
}

.hero-card-visual {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  position: relative;
  background: #0a0b0f;
}

.hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: -webkit-transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-card:hover .hero-card-img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.hero-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: #0a0b0f;
  border-top: 1px solid rgba(114, 114, 114, 0.747);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f1f2f1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.hero-card:hover .hero-card-label {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hero-strip {
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
  overflow: hidden;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px;
  background: #0a0b0f;
}
.hero-strip::before {
  content: "▶";
  font-size: 7px;
  margin-right: 8px;
  color: #f1f2f1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero-strip span {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 8.5px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #f1f2f1;
}

.hero-strip-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; /* lets it grow wider than the strip */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: strip-marquee 60s linear infinite;
          animation: strip-marquee 60s linear infinite;
  will-change: transform;
}

@-webkit-keyframes strip-marquee {
  from {
    -webkit-transform: translate3d(-40%, 0, 0);
            transform: translate3d(-40%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes strip-marquee {
  from {
    -webkit-transform: translate3d(-40%, 0, 0);
            transform: translate3d(-40%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.hero-title {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 0;
}
.hero-title svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: hero-title-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 4.15s both;
          animation: hero-title-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 4.15s both;
}
.hero-title .ink {
  fill-opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke-width: 2;
  stroke-linejoin: miter;
  stroke-linecap: butt;
}
.hero-title .w1 {
  fill: #e8e4df;
  stroke: #e8e4df;
  -webkit-animation: hero-ink-draw 1.5s ease 4.35s forwards, hero-ink-fill 0.5s ease 5.7s forwards;
          animation: hero-ink-draw 1.5s ease 4.35s forwards, hero-ink-fill 0.5s ease 5.7s forwards;
}
.hero-title .w2 {
  fill: #e8e4df;
  stroke: #e8e4df;
  -webkit-animation: hero-ink-draw 1.1s ease 4.6s forwards, hero-ink-fill 0.5s ease 5.7s forwards;
          animation: hero-ink-draw 1.1s ease 4.6s forwards, hero-ink-fill 0.5s ease 5.7s forwards;
}
.hero-title .spark {
  fill: #fff;
  stroke: #fff;
  -webkit-animation: hero-ink-draw 1s ease 4.8s forwards, hero-ink-fill 0.5s ease 5.7s forwards;
          animation: hero-ink-draw 1s ease 4.8s forwards, hero-ink-fill 0.5s ease 5.7s forwards;
}

@-webkit-keyframes hero-title-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes hero-ink-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes hero-ink-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes hero-ink-fill {
  to {
    fill-opacity: 1;
  }
}
@keyframes hero-ink-fill {
  to {
    fill-opacity: 1;
  }
}
.hero .crt-scan,
.hero .crt-roll,
.hero .crt-vig {
  z-index: 4;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-gallery {
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .hero-gallery-track {
    -webkit-animation: none;
            animation: none;
  }
  .hero-card[aria-hidden=true],
  .hero-pattern-card[aria-hidden=true] {
    display: none;
  }
  .hero-title svg {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .hero-title .ink {
    -webkit-animation: none !important;
            animation: none !important;
    fill-opacity: 1;
    stroke-opacity: 1;
    stroke-dashoffset: 0;
  }
}
@media (max-width: 768px) {
  .hero-gallery-wrap {
    height: clamp(240px, 42vh, 400px);
  }
}
@media (max-width: 480px) {
  .hero-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 78vw;
            flex: 0 0 78vw;
    min-width: 0;
    max-width: none;
  }
  .hero-pattern-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55vw;
            flex: 0 0 55vw;
    min-width: 0;
    max-width: none;
  }
  .hero-strip span {
    font-size: 7px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 100%;
    margin-top: -60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
  .hero-gallery-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 0;
    height: auto;
  }
  .hero-strip {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .hero-console {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    background: #0a0b0f;
    border-top: 1px solid #444444;
  }
  .hero-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    height: auto;
    margin: 0;
  }
  .hero-pitch {
    border-top: 0;
  }
}
.hero-pitch {
  display: none;
}

@media (max-width: 1100px) {
  .hero-pitch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: #0a0b0f;
  }
  .hero-pitch-lead {
    margin: 0;
    max-width: 24ch;
    font-family: "Space Mono", "Courier New", monospace;
    font-size: clamp(1.05rem, 4.4vw, 1.35rem);
    line-height: 1.25;
    color: #e8e4df;
  }
  .hero-pitch-lead .accent {
    color: #e31c79;
  }
  .hero-pitch-sub {
    font-family: "Space Mono", "Courier New", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a7a7a;
  }
  .hero-cta-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem;
  }
  .hero-cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 52px;
    padding: 0 1.5rem;
    font-family: "Space Mono", "Courier New", monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .hero-cta::before {
    content: "[ ";
  }
  .hero-cta::after {
    content: " ]";
  }
  .hero-cta--primary {
    color: #0a0b0f;
    background: #e31c79;
    border-color: #e31c79;
  }
  .hero-cta--ghost {
    color: #e8e4df;
    background: transparent;
    border-color: rgba(114, 114, 114, 0.747);
  }
  .hero-cta:focus-visible {
    outline: 2px solid #00b8e4;
    outline-offset: 2px;
  }
}
@media (hover: none) {
  .hero-card-label {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.intro-section {
  padding: 4rem 4rem;
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  position: relative;
  background: #0a0b0f;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 860px;
}
.intro-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch' seed='4'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncR type='discrete' tableValues='0 0 0 0 0 0 0 0 1 1'/><feFuncG type='discrete' tableValues='0 0 0 0 0 0 0 0 1 1'/><feFuncB type='discrete' tableValues='0 0 0 0 0 0 0 0 1 1'/></feComponentTransfer></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  background-repeat: repeat;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: pixelated;
  image-rendering: crisp-edges;
  will-change: background-position;
  -webkit-animation: grain-shift 0.7s steps(8, end) infinite;
          animation: grain-shift 0.7s steps(8, end) infinite;
}
@media (max-width: 768px) {
  .intro-section {
    padding: 3rem 2rem;
    min-height: 720px;
  }
}
@media (max-width: 480px) {
  .intro-section {
    padding: 2rem 1.5rem;
    min-height: 580px;
  }
}

@-webkit-keyframes grain-shift {
  0% {
    background-position: 0% 0%;
  }
  12% {
    background-position: -23% -8%;
  }
  25% {
    background-position: -8% -19%;
  }
  37% {
    background-position: 13% -4%;
  }
  50% {
    background-position: -4% 22%;
  }
  62% {
    background-position: -19% 3%;
  }
  75% {
    background-position: 7% -14%;
  }
  87% {
    background-position: 18% 11%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes grain-shift {
  0% {
    background-position: 0% 0%;
  }
  12% {
    background-position: -23% -8%;
  }
  25% {
    background-position: -8% -19%;
  }
  37% {
    background-position: 13% -4%;
  }
  50% {
    background-position: -4% 22%;
  }
  62% {
    background-position: -19% 3%;
  }
  75% {
    background-position: 7% -14%;
  }
  87% {
    background-position: 18% 11%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.intro-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.window-stack {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1.3;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .window-stack {
    aspect-ratio: 127/100;
  }
}

.popup {
  position: absolute;
  width: 80%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(232, 228, 223, 0.06);
  background: rgba(18, 20, 28, 0.94);
  -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 0 60px rgba(0, 0, 0, 0.4);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 0 60px rgba(0, 0, 0, 0.4);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 0;
  -webkit-transform: translateY(16px) scale(0.82);
          transform: translateY(16px) scale(0.82);
}

.popup--back-2 {
  top: 0;
  left: 0;
  z-index: 1;
}

.popup--back-1 {
  top: 22%;
  left: 22%;
  z-index: 2;
}

.popup--back-1,
.popup--back-2 {
  pointer-events: none;
  -webkit-filter: brightness(0.7) saturate(0.85);
          filter: brightness(0.7) saturate(0.85);
}

.popup--main {
  top: 10%;
  left: 11%;
  z-index: 3;
  border-color: rgba(227, 28, 121, 0.22);
  -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(227, 28, 121, 0.06), inset 0 0 70px rgba(0, 0, 0, 0.45);
          box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(227, 28, 121, 0.06), inset 0 0 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.popup--main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(0, 184, 228, 0.08)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(0, 184, 228, 0.08) 50%, transparent);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  pointer-events: none;
  -webkit-animation: window-scan 6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
          animation: window-scan 6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@-webkit-keyframes window-scan {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  60%, 100% {
    -webkit-transform: translateX(400%);
            transform: translateX(400%);
  }
}

@keyframes window-scan {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  60%, 100% {
    -webkit-transform: translateX(400%);
            transform: translateX(400%);
  }
}
@-webkit-keyframes popup-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.8);
            transform: translateY(16px) scale(0.8);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-3px) scale(1.03);
            transform: translateY(-3px) scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes popup-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.8);
            transform: translateY(16px) scale(0.8);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-3px) scale(1.03);
            transform: translateY(-3px) scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.popup-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 1.05rem;
  background: rgba(26, 29, 40, 0.85);
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
}

.popup-dots {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.popup-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #444444;
}
.popup-dots span:nth-child(1) {
  background: #e31c79;
  -webkit-box-shadow: 0 0 6px rgba(227, 28, 121, 0.5);
          box-shadow: 0 0 6px rgba(227, 28, 121, 0.5);
}
.popup-dots span:nth-child(2) {
  background: #7928ca;
  -webkit-box-shadow: 0 0 6px rgba(121, 40, 202, 0.5);
          box-shadow: 0 0 6px rgba(121, 40, 202, 0.5);
}
.popup-dots span:nth-child(3) {
  background: #00b8e4;
  -webkit-box-shadow: 0 0 6px rgba(0, 184, 228, 0.5);
          box-shadow: 0 0 6px rgba(0, 184, 228, 0.5);
}

.popup-title {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(122, 122, 122, 0.75);
}

.popup-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6rem;
  padding: 1.2rem 1.15rem;
}

.popup-line {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.9rem;
  color: rgba(122, 122, 122, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.terminal-prompt {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.9rem;
  color: #7a7a7a;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
  text-shadow: 0 0 8px rgba(0, 184, 228, 0.1);
}
.terminal-prompt:nth-child(1) {
  --chars: 55;
}
.terminal-prompt:nth-child(2) {
  --chars: 46;
}
.terminal-prompt:nth-child(3) {
  --chars: 34;
}

@-webkit-keyframes type-in {
  to {
    max-width: calc(var(--chars) * 1ch);
  }
}

@keyframes type-in {
  to {
    max-width: calc(var(--chars) * 1ch);
  }
}
@-webkit-keyframes caret-blink {
  from, to {
    border-right-color: #e31c79;
  }
  50% {
    border-right-color: transparent;
  }
}
@keyframes caret-blink {
  from, to {
    border-right-color: #e31c79;
  }
  50% {
    border-right-color: transparent;
  }
}
@-webkit-keyframes caret-off {
  to {
    border-right-color: transparent;
  }
}
@keyframes caret-off {
  to {
    border-right-color: transparent;
  }
}
.intro-section.is-revealed .popup {
  -webkit-animation: popup-open 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
          animation: popup-open 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.intro-section.is-revealed .popup--back-2 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.intro-section.is-revealed .popup--back-1 {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.intro-section.is-revealed .popup--main {
  -webkit-animation-delay: 0.26s;
          animation-delay: 0.26s;
}
.intro-section.is-revealed .popup--main .terminal-prompt:nth-child(1) {
  -webkit-animation: type-in 1.3s steps(55) 0.85s forwards, caret-blink 0.7s step-end 0.85s infinite, caret-off 0.01s linear 2.15s forwards;
          animation: type-in 1.3s steps(55) 0.85s forwards, caret-blink 0.7s step-end 0.85s infinite, caret-off 0.01s linear 2.15s forwards;
}
.intro-section.is-revealed .popup--main .terminal-prompt:nth-child(2) {
  -webkit-animation: type-in 1.1s steps(46) 2.2s forwards, caret-blink 0.7s step-end 2.2s infinite, caret-off 0.01s linear 3.3s forwards;
          animation: type-in 1.1s steps(46) 2.2s forwards, caret-blink 0.7s step-end 2.2s infinite, caret-off 0.01s linear 3.3s forwards;
}
.intro-section.is-revealed .popup--main .terminal-prompt:nth-child(3) {
  -webkit-animation: type-in 0.85s steps(34) 3.35s forwards, caret-blink 0.7s step-end 3.35s infinite;
          animation: type-in 0.85s steps(34) 3.35s forwards, caret-blink 0.7s step-end 3.35s infinite;
}

@media (max-width: 480px) {
  .popup {
    width: 86%;
  }
  .popup--back-1 {
    top: 18%;
    left: 14%;
  }
  .popup--main {
    top: 8%;
    left: 7%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-section::before {
    -webkit-animation: none;
            animation: none;
  }
  .popup {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  .popup--main::after {
    -webkit-animation: none;
            animation: none;
    opacity: 0;
  }
  .terminal-prompt {
    max-width: none !important;
    overflow: visible;
    border-right-color: transparent !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
.about-section {
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  background: #0a0b0f;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 600px;
}
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

.about-visual[data-animate] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
  will-change: auto;
}

.about-visual {
  border-right: 1px solid rgba(114, 114, 114, 0.747);
  padding: 0;
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-radial-gradient(#03061a 0 0.0001%, #1a2238 0 0.0002%) 50% 0/2500px 2500px, repeating-conic-gradient(#03061a 0 0.0001%, #1a2238 0 0.0002%) 60% 60%/2500px 2500px, repeating-radial-gradient(#03061a 0 0.0001%, #1a2238 0 0.0002%) 40% 80%/2300px 2300px;
  background-blend-mode: difference;
  -webkit-animation: about-static 0.2s infinite alternate;
          animation: about-static 0.2s infinite alternate;
  opacity: 0;
}
.about-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 5;
  pointer-events: none;
  background: #00b8e4;
  -webkit-box-shadow: 0 0 12px 2px rgba(0, 184, 228, 0.9);
          box-shadow: 0 0 12px 2px rgba(0, 184, 228, 0.9);
  opacity: 0;
}
.about-visual .visual-inner {
  position: absolute;
  inset: 0 0 60px 0;
  overflow: hidden;
}
.about-visual .visual-inner {
  clip-path: inset(0 0 100% 0);
}
.about-visual.is-visible .visual-inner {
  -webkit-animation: about-wipe-in 0.85s cubic-bezier(0.4, 0, 0.2, 1) 2s both;
          animation: about-wipe-in 0.85s cubic-bezier(0.4, 0, 0.2, 1) 2s both;
}
.about-visual.is-visible .scan-line-effect {
  opacity: 1;
  -webkit-animation: scanDown 4s linear 2.85s infinite;
          animation: scanDown 4s linear 2.85s infinite;
}
.about-visual.is-visible .visual-placeholder {
  opacity: 1;
}
.about-visual.is-visible .glitch-bars {
  -webkit-animation: glitchFlicker 8s steps(1) 2.85s infinite;
          animation: glitchFlicker 8s steps(1) 2.85s infinite;
}
.about-visual.is-visible::after {
  -webkit-animation: about-wipe-scan 0.85s cubic-bezier(0.4, 0, 0.2, 1) 2s both;
          animation: about-wipe-scan 0.85s cubic-bezier(0.4, 0, 0.2, 1) 2s both;
}
@media (max-width: 768px) {
  .about-visual {
    border-right: none;
    border-bottom: 1px solid rgba(114, 114, 114, 0.747);
    min-height: 420px;
  }
}
@media (max-width: 480px) {
  .about-visual {
    min-height: 320px;
  }
}

@-webkit-keyframes about-wipe-in {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes about-wipe-in {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes about-wipe-scan {
  0% {
    top: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 60px);
    opacity: 0;
  }
}
@keyframes about-wipe-scan {
  0% {
    top: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 60px);
    opacity: 0;
  }
}
@-webkit-keyframes about-static {
  100% {
    background-position: 50% 100%, 60% 50%, 45% 20%;
  }
}
@keyframes about-static {
  100% {
    background-position: 50% 100%, 60% 50%, 45% 20%;
  }
}
.visual-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: unset;
  overflow: hidden;
}

.visual-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.scan-line-effect {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, rgba(227, 28, 121, 0.08)), to(transparent));
  background: linear-gradient(180deg, transparent 0%, rgba(227, 28, 121, 0.08) 50%, transparent 100%);
  height: 100%;
  -webkit-animation: scanDown 4s linear infinite;
          animation: scanDown 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@-webkit-keyframes scanDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes scanDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.visual-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(227, 28, 121, 0.02) 0px, transparent 2px, transparent 4px, rgba(0, 184, 228, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
}

.glitch-bars {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: repeating-linear-gradient(0deg, rgba(227, 28, 121, 0.05) 0px, transparent 1px, transparent 3px);
  -webkit-animation: glitchFlicker 8s steps(1) infinite;
          animation: glitchFlicker 8s steps(1) infinite;
  z-index: 1;
}

@-webkit-keyframes glitchFlicker {
  0%, 97% {
    opacity: 0;
  }
  98% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes glitchFlicker {
  0%, 97% {
    opacity: 0;
  }
  98% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.visual-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 1rem 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: rgba(10, 11, 15, 0.88);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(114, 114, 114, 0.747);
  z-index: 6;
}

.vs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vs-label {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}

.vs-val {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.85rem;
  color: #e31c79;
}

.about-visual .visual-loading {
  position: absolute;
  inset: 0 0 60px 0;
  z-index: 4;
  overflow: hidden;
  background: #0a0b0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.about-visual .static-noise {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(#03061a 0 0.0001%, #1a2238 0 0.0002%) 50% 0/700px 700px, repeating-conic-gradient(#03061a 0 0.0001%, #1a2238 0 0.0002%) 60% 60%/700px 700px;
  background-blend-mode: difference;
  opacity: 0.9;
}

.about-visual .static-roll {
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(0, 184, 228, 0.12)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 184, 228, 0.12) 50%, rgba(255, 255, 255, 0));
  z-index: 1;
}

.about-visual .static-label {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8e4df;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 0.6rem;
}

.about-visual .static-label-base,
.about-visual .static-label-swap {
  grid-area: 1/1;
  white-space: nowrap;
  text-align: center;
}

.about-visual .static-label-base {
  opacity: 1;
}

.about-visual .static-label-swap {
  color: #00b8e4;
  opacity: 0;
}

.about-visual .static-cursor {
  -webkit-animation: static-cursor-blink 1s steps(2) infinite;
          animation: static-cursor-blink 1s steps(2) infinite;
}

@-webkit-keyframes static-cursor-blink {
  50% {
    opacity: 0;
  }
}

@keyframes static-cursor-blink {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes static-flicker {
  100% {
    background-position: 50% 100%, 60% 50%;
  }
}
@keyframes static-flicker {
  100% {
    background-position: 50% 100%, 60% 50%;
  }
}
@-webkit-keyframes static-resolve {
  0%, 55% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.12;
  }
}
@keyframes static-resolve {
  0%, 55% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.12;
  }
}
@-webkit-keyframes static-roll-move {
  from {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  to {
    -webkit-transform: translateY(420%);
            transform: translateY(420%);
  }
}
@keyframes static-roll-move {
  from {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  to {
    -webkit-transform: translateY(420%);
            transform: translateY(420%);
  }
}
@-webkit-keyframes static-text-flicker {
  0%, 8% {
    opacity: 1;
  }
  9% {
    opacity: 0.2;
  }
  10%, 40% {
    opacity: 1;
  }
  41% {
    opacity: 0.3;
  }
  42%, 100% {
    opacity: 1;
  }
}
@keyframes static-text-flicker {
  0%, 8% {
    opacity: 1;
  }
  9% {
    opacity: 0.2;
  }
  10%, 40% {
    opacity: 1;
  }
  41% {
    opacity: 0.3;
  }
  42%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes static-label-hide {
  to {
    opacity: 0;
  }
}
@keyframes static-label-hide {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes static-label-show {
  to {
    opacity: 1;
  }
}
@keyframes static-label-show {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes loading-cut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loading-cut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.about-visual.is-visible .visual-loading {
  opacity: 1;
  -webkit-animation: loading-cut 0.25s ease 2s forwards;
          animation: loading-cut 0.25s ease 2s forwards;
}

.about-visual.is-visible .static-noise {
  -webkit-animation: static-flicker 0.2s infinite alternate, static-resolve 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: static-flicker 0.2s infinite alternate, static-resolve 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-visual.is-visible .static-roll {
  -webkit-animation: static-roll-move 1.1s linear infinite;
          animation: static-roll-move 1.1s linear infinite;
}

.about-visual.is-visible .static-label {
  -webkit-animation: static-text-flicker 2s steps(1) forwards;
          animation: static-text-flicker 2s steps(1) forwards;
}

.about-visual.is-visible .static-label-base {
  -webkit-animation: static-label-hide 0.2s ease 1.6s forwards;
          animation: static-label-hide 0.2s ease 1.6s forwards;
}

.about-visual.is-visible .static-label-swap {
  -webkit-animation: static-label-show 0.2s ease 1.6s forwards;
          animation: static-label-show 0.2s ease 1.6s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .about-visual .visual-loading {
    display: none !important;
  }
}
.about-text {
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .about-text {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .about-text {
    padding: 2rem 1.5rem;
  }
}

.about-label {
  display: block;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.about-description {
  font-size: 0.95rem;
  color: #7a7a7a;
  line-height: 1.8;
}

.expertise-grid {
  margin-top: 2rem;
}

.expertise-title {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e8e4df;
  margin-bottom: 1.5rem;
}

.expertise-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .expertise-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .expertise-items {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.expertise-item {
  font-size: 0.85rem;
  color: #7a7a7a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.expertise-item:hover {
  color: #e31c79;
}
.expertise-item:hover .ei-dot {
  background: #e31c79;
  -webkit-box-shadow: 0 0 12px #e31c79;
          box-shadow: 0 0 12px #e31c79;
}

.ei-dot {
  width: 5px;
  height: 5px;
  background: rgba(227, 28, 121, 0.5);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: dotPulse 3s ease-in-out infinite;
          animation: dotPulse 3s ease-in-out infinite;
}

@-webkit-keyframes dotPulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 4px rgba(227, 28, 121, 0.3);
            box-shadow: 0 0 4px rgba(227, 28, 121, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 0 10px rgba(227, 28, 121, 0.6);
            box-shadow: 0 0 10px rgba(227, 28, 121, 0.6);
  }
}

@keyframes dotPulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 4px rgba(227, 28, 121, 0.3);
            box-shadow: 0 0 4px rgba(227, 28, 121, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 0 10px rgba(227, 28, 121, 0.6);
            box-shadow: 0 0 10px rgba(227, 28, 121, 0.6);
  }
}
.about-cta {
  margin-top: 2rem;
}

.btn-about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #e31c79;
  border: 1px solid #e31c79;
  color: #e8e4df;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.btn-about:hover {
  background: rgb(204.3, 25.2, 108.9);
  -webkit-box-shadow: 0 0 30px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 30px rgba(227, 28, 121, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-about:hover::before {
  left: 100%;
}
.btn-about:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn-about svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-about:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .about-visual::after {
    display: none !important;
  }
  .about-visual::before {
    -webkit-animation: none !important;
            animation: none !important;
  }
  .about-visual .visual-inner {
    clip-path: none !important;
  }
  .about-visual .visual-frame,
  .about-visual .visual-inner,
  .about-visual .scan-line-effect,
  .about-visual .visual-placeholder,
  .about-visual .glitch-bars {
    opacity: 1 !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
.work-section {
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  background: #0a0b0f;
}

.gallery-viewport {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.columns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 4rem;
}

.column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.column:last-child {
  border-right: none;
}

.work-section {
  view-timeline-name: --gallery-view;
  view-timeline-axis: block;
}

.column-animated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
  padding: 0 1rem;
  will-change: transform;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  animation-timeline: --gallery-view;
  animation-range: cover 0% cover 100%;
}

.column:nth-child(1) .column-animated {
  margin-top: 0;
  -webkit-animation-name: par-col-0;
          animation-name: par-col-0;
}

.column:nth-child(2) .column-animated {
  margin-top: 60px;
  -webkit-animation-name: par-col-1;
          animation-name: par-col-1;
}

.column:nth-child(3) .column-animated {
  margin-top: 30px;
  -webkit-animation-name: par-col-2;
          animation-name: par-col-2;
}

.column:nth-child(4) .column-animated {
  margin-top: 80px;
  -webkit-animation-name: par-col-3;
          animation-name: par-col-3;
}

@-webkit-keyframes par-col-0 {
  from {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

@keyframes par-col-0 {
  from {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}
@-webkit-keyframes par-col-1 {
  from {
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
  to {
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
}
@keyframes par-col-1 {
  from {
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
  to {
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
}
@-webkit-keyframes par-col-2 {
  from {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
  to {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}
@keyframes par-col-2 {
  from {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
  to {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}
@-webkit-keyframes par-col-3 {
  from {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  to {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
}
@keyframes par-col-3 {
  from {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  to {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: visible;
  -webkit-filter: drop-shadow(0 0 0.5px rgba(114, 114, 114, 0.7));
          filter: drop-shadow(0 0 0.5px rgba(114, 114, 114, 0.7));
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-filter 0.4s ease;
  transition: -webkit-transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-filter 0.4s ease;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease, -webkit-transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-filter 0.4s ease;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #12141c;
  clip-path: polygon(0.5% 0.5%, 99.5% 0.5%, 99.5% calc(100% - 40px), 65% calc(100% - 40px), 50.5% calc(100% - 1px), 0.5% calc(100% - 1px));
  z-index: 0;
}
.gallery-item.item-tall {
  aspect-ratio: 3/5;
}
.gallery-item.item-medium {
  aspect-ratio: 4/5;
}
.gallery-item.item-short {
  aspect-ratio: 1/1;
}
.gallery-item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-filter: drop-shadow(0 0 0.5px #e31c79) drop-shadow(0 0 8px rgba(227, 28, 121, 0.5));
          filter: drop-shadow(0 0 0.5px #e31c79) drop-shadow(0 0 8px rgba(227, 28, 121, 0.5));
}

.work-media {
  position: absolute;
  inset: 0;
  clip-path: polygon(0.5% 0.5%, 99.5% 0.5%, 99.5% calc(100% - 40px), 65% calc(100% - 40px), 50.5% calc(100% - 1px), 0.5% calc(100% - 1px));
  z-index: 1;
}

.work-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}

.gallery-item:hover .work-media:not(.work-media--glitch) .work-image {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.work-media--glitch .work-image--hover {
  opacity: 0;
}
.work-media--glitch .work-image--r,
.work-media--glitch .work-image--c {
  opacity: 0;
  mix-blend-mode: screen;
}
.work-media--glitch .work-image--r {
  -webkit-filter: sepia(1) saturate(7) hue-rotate(-40deg);
          filter: sepia(1) saturate(7) hue-rotate(-40deg);
}
.work-media--glitch .work-image--c {
  -webkit-filter: sepia(1) saturate(7) hue-rotate(140deg);
          filter: sepia(1) saturate(7) hue-rotate(140deg);
}

.gallery-item:hover .work-media--glitch .work-image--hover {
  -webkit-animation: glitch-swap-b 0.45s steps(1, end) forwards;
          animation: glitch-swap-b 0.45s steps(1, end) forwards;
}
.gallery-item:hover .work-media--glitch .work-image--r {
  -webkit-animation: glitch-swap-r 0.45s ease forwards;
          animation: glitch-swap-r 0.45s ease forwards;
}
.gallery-item:hover .work-media--glitch .work-image--c {
  -webkit-animation: glitch-swap-c 0.45s ease forwards;
          animation: glitch-swap-c 0.45s ease forwards;
}

@-webkit-keyframes glitch-swap-b {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 1;
    clip-path: inset(40% 0 30% 0);
  }
  36% {
    clip-path: inset(0 0 55% 0);
  }
  54% {
    clip-path: inset(65% 0 0 0);
  }
  72% {
    clip-path: inset(20% 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes glitch-swap-b {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 1;
    clip-path: inset(40% 0 30% 0);
  }
  36% {
    clip-path: inset(0 0 55% 0);
  }
  54% {
    clip-path: inset(65% 0 0 0);
  }
  72% {
    clip-path: inset(20% 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes glitch-swap-r {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  12% {
    opacity: 0.9;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  70% {
    opacity: 0.6;
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes glitch-swap-r {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  12% {
    opacity: 0.9;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  70% {
    opacity: 0.6;
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes glitch-swap-c {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  12% {
    opacity: 0.9;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  40% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  70% {
    opacity: 0.6;
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes glitch-swap-c {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  12% {
    opacity: 0.9;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  40% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  70% {
    opacity: 0.6;
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.item-info {
  position: absolute;
  left: 66%;
  right: 1%;
  bottom: 1px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
  padding: 0;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
  background: transparent;
}

.item-title {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #e8e4df;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: right;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.gallery-item:hover .item-title {
  color: #fff;
}

.item-category {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  color: #e31c79;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .gallery-viewport {
    padding: 2rem 0 3rem;
  }
  .columns-wrapper {
    display: block;
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    padding: 0 1rem;
  }
  .column,
  .column-animated {
    display: contents;
  }
  .gallery-item {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    width: 100%;
    margin: 0 0 1rem;
  }
}
@media (max-width: 768px) {
  .columns-wrapper {
    display: block;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    padding: 0 1rem;
  }
  .column,
  .column-animated {
    display: contents;
  }
  .gallery-item {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    width: 100%;
    margin: 0 0 1rem;
  }
}
@media (max-width: 480px) {
  .gallery-item:hover {
    -webkit-transform: none;
            transform: none;
  }
  .gallery-item:active {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  .item-title {
    font-size: 9px;
  }
  .item-category {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .column-animated {
    -webkit-animation: none !important;
            animation: none !important;
    margin-top: 0 !important;
    will-change: auto;
  }
  .gallery-item {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .gallery-item:hover {
    -webkit-transform: none;
            transform: none;
  }
  .work-image {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .work-media--glitch .work-image--hover {
    -webkit-animation: none !important;
            animation: none !important;
  }
  .work-media--glitch .work-image--r,
  .work-media--glitch .work-image--c {
    display: none !important;
  }
  .gallery-item:hover .work-media--glitch .work-image--hover {
    opacity: 1;
  }
}
.contact-section {
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  background: #0a0b0f;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  padding: 4rem;
  border-right: 1px solid rgba(114, 114, 114, 0.747);
}
@media (max-width: 768px) {
  .contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(114, 114, 114, 0.747);
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .contact-info {
    padding: 2rem 1.5rem;
  }
}

.contact-eyebrow {
  display: block;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.contact-headline {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #e8e4df;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.contact-description {
  font-size: 0.95rem;
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.ci-label {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ci-value {
  font-size: 0.95rem;
  color: #e8e4df;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.ci-value::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#e31c79), to(#00b8e4));
  background: linear-gradient(90deg, #e31c79, #00b8e4);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.ci-value:hover {
  color: #e31c79;
}
.ci-value:hover::after {
  width: 100%;
}

.contact-form-wrapper {
  padding: 4rem;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(114, 114, 114, 0.747);
  color: #e8e4df;
  font-size: 1rem;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-input::-webkit-input-placeholder {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-input::-moz-placeholder {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-input:-ms-input-placeholder {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-input::-ms-input-placeholder {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-input::placeholder {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-input:focus {
  outline: none;
  border-color: rgba(227, 28, 121, 0.6);
  background: rgba(18, 20, 28, 0.3);
  -webkit-box-shadow: 0 0 20px rgba(227, 28, 121, 0.1);
          box-shadow: 0 0 20px rgba(227, 28, 121, 0.1);
}
.form-input:hover {
  border-color: rgba(227, 28, 121, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #e31c79;
  border: 1px solid #e31c79;
  color: #e8e4df;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.btn-submit:hover {
  background: rgb(204.3, 25.2, 108.9);
  -webkit-box-shadow: 0 0 30px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 30px rgba(227, 28, 121, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-submit:hover::before {
  left: 100%;
}
.btn-submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn-submit svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-submit:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.terms-section {
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  background: #0a0b0f;
}

.terms-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 768px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }
}

.terms-nav {
  position: sticky;
  top: 80px;
  border-right: 1px solid rgba(114, 114, 114, 0.747);
  border-bottom: 1px solid rgba(114, 114, 114, 0.747);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .terms-nav {
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(114, 114, 114, 0.747);
    padding: 1.5rem 0;
  }
}

.terms-nav-link {
  display: block;
  padding: 0.5rem 2rem;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.terms-nav-link:last-child {
  border-bottom: none;
}
.terms-nav-link:hover {
  color: #e31c79;
  background: rgba(227, 28, 121, 0.04);
  padding-left: 3rem;
}
@media (max-width: 480px) {
  .terms-nav-link {
    padding: 0.5rem 1.5rem;
    font-size: 10px;
  }
  .terms-nav-link:hover {
    padding-left: 1.5rem;
  }
}

.terms-body {
  padding: 3rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .terms-body {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .terms-body {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}

.terms-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
}
@media (max-width: 480px) {
  .terms-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.terms-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.tm-label {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tm-value {
  font-size: 0.95rem;
  color: #e8e4df;
  font-weight: 500;
}

.terms-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
}
.terms-article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ta-number {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #e31c79;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.ta-title {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #e8e4df;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.ta-text {
  font-size: 0.95rem;
  color: #7a7a7a;
  line-height: 1.8;
}

.terms-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}
.terms-list li {
  font-size: 0.9rem;
  color: #7a7a7a;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}
.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #e31c79;
}

.modal-state,
.gallery-state {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  z-index: 1000;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-wrap:has(.modal-state:checked) .modal-overlay {
  opacity: 1;
  visibility: visible;
}

.modal-wrap:has(.modal-state:checked) .modal-container {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.modal-container {
  background: #12141c;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(10, 11, 15, 0.8);
  border: 1px solid rgba(114, 114, 114, 0.747);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #e8e4df;
}
.modal-close:hover {
  background: #e31c79;
  border-color: #e31c79;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.modal-close svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  height: 100vh;
}
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
    overflow-y: auto;
  }
}
@media (max-width: 480px) {
  .modal-body {
    grid-template-rows: 45vh auto;
  }
}

.gallery {
  position: relative;
  background: #0a0b0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 768px) {
  .gallery {
    min-height: 50vh;
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .gallery {
    min-height: 45vh;
    height: 45vh;
  }
}

.gallery-images {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.gallery-img:first-child {
  opacity: 1;
}

.modal-wrap:has(.g1:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g1:checked) .gallery-img:nth-child(1) {
  opacity: 1;
}

.modal-wrap:has(.g2:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g2:checked) .gallery-img:nth-child(2) {
  opacity: 1;
}

.modal-wrap:has(.g3:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g3:checked) .gallery-img:nth-child(3) {
  opacity: 1;
}

.modal-wrap:has(.g4:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g4:checked) .gallery-img:nth-child(4) {
  opacity: 1;
}

.modal-wrap:has(.g5:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g5:checked) .gallery-img:nth-child(5) {
  opacity: 1;
}

.modal-wrap:has(.g6:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g6:checked) .gallery-img:nth-child(6) {
  opacity: 1;
}

.modal-wrap:has(.g7:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g7:checked) .gallery-img:nth-child(7) {
  opacity: 1;
}

.modal-wrap:has(.g8:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g8:checked) .gallery-img:nth-child(8) {
  opacity: 1;
}

.modal-wrap:has(.g9:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g9:checked) .gallery-img:nth-child(9) {
  opacity: 1;
}

.modal-wrap:has(.g10:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g10:checked) .gallery-img:nth-child(10) {
  opacity: 1;
}

.modal-wrap:has(.g11:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g11:checked) .gallery-img:nth-child(11) {
  opacity: 1;
}

.modal-wrap:has(.g12:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g12:checked) .gallery-img:nth-child(12) {
  opacity: 1;
}

.modal-wrap:has(.g13:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g13:checked) .gallery-img:nth-child(13) {
  opacity: 1;
}

.modal-wrap:has(.g14:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g14:checked) .gallery-img:nth-child(14) {
  opacity: 1;
}

.modal-wrap:has(.g15:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g15:checked) .gallery-img:nth-child(15) {
  opacity: 1;
}

.modal-wrap:has(.g16:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g16:checked) .gallery-img:nth-child(16) {
  opacity: 1;
}

.modal-wrap:has(.g17:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g17:checked) .gallery-img:nth-child(17) {
  opacity: 1;
}

.modal-wrap:has(.g18:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g18:checked) .gallery-img:nth-child(18) {
  opacity: 1;
}

.modal-wrap:has(.g19:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g19:checked) .gallery-img:nth-child(19) {
  opacity: 1;
}

.modal-wrap:has(.g20:checked) .gallery-img {
  opacity: 0;
}
.modal-wrap:has(.g20:checked) .gallery-img:nth-child(20) {
  opacity: 1;
}

.arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10, 11, 15, 0.7);
  border: 1px solid rgba(114, 114, 114, 0.747);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow:hover {
  background: rgba(227, 28, 121, 0.8);
  border-color: #e31c79;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}

.arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #e8e4df;
  border-right: 2px solid #e8e4df;
}

.arrow-prev {
  left: 1rem;
}
.arrow-prev .arrow-icon {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-left: 2px;
}

.arrow-next {
  right: 1rem;
}
.arrow-next .arrow-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 2px;
}

.indicators {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(122, 122, 122, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
.dot:hover {
  background: rgba(232, 228, 223, 0.6);
}

.modal-wrap:has(.g1:checked) .dot:nth-child(1) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g2:checked) .dot:nth-child(2) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g3:checked) .dot:nth-child(3) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g4:checked) .dot:nth-child(4) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g5:checked) .dot:nth-child(5) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g6:checked) .dot:nth-child(6) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g7:checked) .dot:nth-child(7) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g8:checked) .dot:nth-child(8) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g9:checked) .dot:nth-child(9) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g10:checked) .dot:nth-child(10) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g11:checked) .dot:nth-child(11) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g12:checked) .dot:nth-child(12) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g13:checked) .dot:nth-child(13) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g14:checked) .dot:nth-child(14) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g15:checked) .dot:nth-child(15) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g16:checked) .dot:nth-child(16) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g17:checked) .dot:nth-child(17) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g18:checked) .dot:nth-child(18) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g19:checked) .dot:nth-child(19) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.modal-wrap:has(.g20:checked) .dot:nth-child(20) {
  background: #e31c79;
  width: 24px;
  -webkit-box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
          box-shadow: 0 0 8px rgba(227, 28, 121, 0.4);
}

.details {
  padding: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  height: 100vh;
  border-left: 1px solid rgba(114, 114, 114, 0.747);
}
@media (max-width: 768px) {
  .details {
    height: auto;
    border-left: none;
    border-top: 1px solid rgba(114, 114, 114, 0.747);
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .details {
    padding: 1.5rem;
  }
}
.details::-webkit-scrollbar {
  width: 4px;
}
.details::-webkit-scrollbar-track {
  background: #0a0b0f;
}
.details::-webkit-scrollbar-thumb {
  background: rgba(227, 28, 121, 0.2);
}

.details-header {
  margin-bottom: 1.5rem;
}

.cat {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: #e31c79;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.details h2 {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
}

.desc {
  font-size: 0.875rem;
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
}
.meta h4 {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.meta p {
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .meta {
    grid-template-columns: 1fr 1fr;
  }
  .meta > div:nth-child(3) {
    grid-column: 1/-1;
  }
}

.tech {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 228, 223, 0.06);
}
.tech h4 {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.tech ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  list-style: none;
}
.tech li {
  font-size: 0.85rem;
  color: #7a7a7a;
  padding-left: 1.5rem;
  position: relative;
}
.tech li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #e31c79;
}

:root {
  --favicon-theme-color: #0a0b0f;
  --favicon-mask-color: #e31c79;
  --favicon-background-color: #0a0b0f;
}

[data-animate] {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-animate=down] {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

[data-animate=left] {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

[data-animate=right] {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

[data-animate=scale] {
  -webkit-transform: translateY(20px) scale(0.94);
          transform: translateY(20px) scale(0.94);
}

[data-animate=fade] {
  -webkit-transform: none;
          transform: none;
  will-change: opacity;
}

[data-animate=split] {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

[data-animate].is-visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-animate-delay="1"] {
  -webkit-transition-delay: 0.09s;
          transition-delay: 0.09s;
}

[data-animate-delay="2"] {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

[data-animate-delay="3"] {
  -webkit-transition-delay: 0.27s;
          transition-delay: 0.27s;
}

[data-animate-delay="4"] {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

[data-animate-delay="5"] {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

[data-animate-delay="6"] {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}

[data-animate-delay="7"] {
  -webkit-transition-delay: 0.63s;
          transition-delay: 0.63s;
}

[data-animate-delay="8"] {
  -webkit-transition-delay: 0.72s;
          transition-delay: 0.72s;
}

.section-header.is-visible::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.section-header .section-number,
.section-header .section-sub,
.section-header .section-heading {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-header.is-visible .section-number {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.section-header.is-visible .section-sub {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.section-header.is-visible .section-heading {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate=split],
  .section-header .section-number,
  .section-header .section-sub,
  .section-header .section-heading {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .section-header::after,
  .section-header.is-visible::after {
    -webkit-transform: scaleX(1) !important;
            transform: scaleX(1) !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}/*# sourceMappingURL=styles.css.map */