.App {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: #001D25;
}
.App::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='200'%20height='200'%3E%3Cg%20stroke='%23F1B800'%20stroke-opacity='0.22'%20stroke-width='1'%3E%3Cline%20x1='100'%20y1='94'%20x2='100'%20y2='106'/%3E%3Cline%20x1='94'%20y1='100'%20x2='106'%20y2='100'/%3E%3C/g%3E%3C/svg%3E"), repeating-linear-gradient(to right, rgba(244, 241, 232, 0.05) 0, rgba(244, 241, 232, 0.05) 1px, transparent 1px, transparent 200px), repeating-linear-gradient(to bottom, rgba(244, 241, 232, 0.05) 0, rgba(244, 241, 232, 0.05) 1px, transparent 1px, transparent 200px);
  background-position: 0 0, 100px 0, 0 100px;
  background-size: 200px 200px, auto, auto;
  opacity: 0.85;
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.App::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='140'%20height='140'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  .App::after {
    opacity: 0.035;
  }
}
.App main,
.App footer {
  position: relative;
  z-index: 1;
}

body {
  background: #001D25;
  margin: 0;
}.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 18px;
  border: 1px solid transparent;
  will-change: transform;
  transition: background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0) scale(0.985);
}
.btn:focus-visible {
  outline: 2px solid #F1B800;
  outline-offset: 3px;
}
.btn--primary {
  background: #F1B800;
  color: #001D25;
}
.btn--primary:hover {
  background: #FFE89E;
}
.btn--primary .btn__icon {
  border-left: 1px solid rgba(0, 29, 37, 0.28);
}
.btn--secondary {
  background: transparent;
  color: #FFE79C;
  border-color: rgba(244, 241, 232, 0.17);
}
.btn--secondary:hover {
  border-color: rgba(241, 184, 0, 0.32);
  background: #00323F;
}
.btn--secondary .btn__icon {
  border-left: 1px solid rgba(244, 241, 232, 0.17);
}
.btn--ghost {
  background: transparent;
  color: #C7D4D1;
  padding-inline: 0.25rem !important;
}
.btn--ghost:hover {
  transform: none;
  color: #F1B800;
}
.btn--ghost:hover .btn__icon {
  transform: translate(3px, -3px);
}
.btn--ghost:active {
  transform: none;
}
.btn--sm {
  padding: 0.55rem 1rem;
}
.btn--md {
  padding: 0.72rem 1.3rem;
}
.btn--lg {
  padding: 0.95rem 1.65rem;
  font-size: 0.875rem;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  margin-left: 0.15rem;
  padding-left: 0.7rem;
  transition: transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}
.btn--ghost .btn__icon {
  margin-left: 0.35rem;
  padding-left: 0;
  border-left: 0 !important;
}.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0 0 -24px 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to bottom, #000 0%, #000 48%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 48%, transparent 100%);
  opacity: 0;
  transition: opacity 320ms ease;
}
.navbar--scrolled::before {
  opacity: 1;
}
.navbar__container {
  position: relative;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .navbar__container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .navbar__container {
    padding-inline: 4rem;
  }
}
.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo {
  height: 24px;
  width: auto;
}
@media (min-width: 768px) {
  .navbar__logo {
    height: 28px;
  }
}
@media (min-width: 1024px) {
  .navbar__nav {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}
@media (max-width: 1023px) {
  .navbar__nav:not(.navbar__nav--open) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .navbar__nav--open {
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(0, 22, 29, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    animation: navbarFadeIn 240ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.navbar__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
@media (max-width: 1023px) {
  .navbar__item {
    border-bottom: 1px solid rgba(244, 241, 232, 0.09);
  }
}
.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  color: #C7D4D1;
  transition: color 140ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 1px;
  background: #F1B800;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1) cubic-bezier(0.32, 0.72, 0, 1);
}
.navbar__link:hover {
  color: #F1B800;
}
.navbar__link:hover::after {
  transform: scaleX(1);
}
.navbar__link--active {
  color: #F1B800;
}
.navbar__link--active::after {
  transform: scaleX(1);
}
.navbar__link--active .navbar__link-idx {
  color: #F1B800;
}
@media (max-width: 1023px) {
  .navbar__link {
    padding: 1.5rem 0;
    font-size: 0.875rem;
  }
  .navbar__link::after {
    display: none;
  }
}
.navbar__link-idx {
  font-size: 0.6875rem;
  color: #8CA09B;
  transition: color 140ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
  .navbar__cta {
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
  }
}
.navbar__toggle {
  display: none;
  color: #FFE79C;
  padding: 0.5rem;
}
@media (max-width: 1023px) {
  .navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.navbar__overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: transparent;
}
@media (min-width: 1024px) {
  .navbar__overlay {
    display: none;
  }
}

@keyframes navbarFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(244, 241, 232, 0.09);
  border-radius: 9999px;
  color: #C7D4D1;
  background: transparent;
  transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1), border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon:hover {
  color: #F1B800;
  border-color: rgba(241, 184, 0, 0.34);
  background: rgba(241, 184, 0, 0.1);
}
.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 8rem 5rem;
}
.hero__hud {
  position: absolute;
  top: clamp(5.5rem, 11vh, 7.5rem);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .hero__hud {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__hud {
    padding-inline: 4rem;
  }
}
.hero__hud {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}
.hero__hud-line {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  color: #8CA09B;
  font-size: 0.6875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__hud-line--right {
  text-align: right;
}
@media (max-width: 767px) {
  .hero__hud-line--right {
    display: none;
  }
}
.hero__inner {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .hero__inner {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding-inline: 4rem;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  color: #C7D4D1;
  margin-bottom: 2rem;
}
.hero__kicker::before {
  content: "[";
  color: #F1B800;
}
.hero__kicker::after {
  content: "]";
  color: #F1B800;
}
.hero__tagline {
  font-family: "Tilt Warp", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFE79C;
  font-size: clamp(2.4rem, 6.6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero__tagline-accent {
  color: #F1B800;
}
.hero__description {
  margin-top: 2rem;
  max-width: 50ch;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #C7D4D1;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  justify-content: center;
}
@media (max-width: 479px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
  }
}
.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 4rem;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.75rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #AAB9B5;
  transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__scroll-label {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  font-size: 0.6875rem;
}
.hero__scroll-rule {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, #F1B800, transparent);
  transform-origin: top;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll-rule {
    animation: heroScrollPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
}
.hero__scroll:hover {
  color: #F1B800;
}
@media (max-height: 680px) {
  .hero__scroll {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__hud, .hero__kicker, .hero__tagline, .hero__description, .hero__actions, .hero__socials {
    opacity: 0;
    animation: heroLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero__hud {
    animation-delay: 0.02s;
  }
  .hero__kicker {
    animation-delay: 0.08s;
  }
  .hero__tagline {
    animation-delay: 0.16s;
  }
  .hero__description {
    animation-delay: 0.3s;
  }
  .hero__actions {
    animation-delay: 0.4s;
  }
  .hero__socials {
    animation-delay: 0.48s;
  }
}

@keyframes heroLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroScrollPulse {
  0% {
    transform: scaleY(0.25);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.25);
    opacity: 0.4;
  }
}.section {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 8vw, 8.5rem);
  scroll-margin-top: 84px;
  background: transparent;
}
.section--alt, .section--dark {
  background: transparent;
}
.section__container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .section__container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .section__container {
    padding-inline: 4rem;
  }
}
.section__index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(244, 241, 232, 0.09);
}
.section__index-tick {
  position: relative;
}
.section__index-tick::before, .section__index-tick::after {
  content: "";
  position: absolute;
  background: #F1B800;
  left: 50%;
  top: 50%;
}
.section__index-tick::before {
  width: 11px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.section__index-tick::after {
  width: 1px;
  height: 11px;
  transform: translate(-50%, -50%);
}
.section__index-tick {
  flex: none;
  width: 11px;
  height: 11px;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section__index-tick {
      opacity: 0;
      animation: reveal-draw linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 20%;
    }
  }
}
.section__index-num {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1;
  color: #F1B800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.section__index-label {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  color: #AAB9B5;
  font-size: 0.75rem;
}
.section__index-label::before {
  content: "// ";
  color: #8CA09B;
}
@media (min-width: 1024px) {
  .section--indexed .section__container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, 2.4vw, 2rem);
    row-gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    row-gap: 0;
  }
}
@media (min-width: 1024px) {
  .section--indexed .section__index {
    grid-column: 1/span 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    position: sticky;
    top: 110px;
    margin-bottom: 0;
    padding: 0.85rem 0 1.4rem 1.25rem;
    border-bottom: 0;
    border-left: 1px solid rgba(244, 241, 232, 0.09);
  }
  .section--indexed .section__index .section__index-tick {
    margin-left: calc(-1.25rem - 5px);
  }
  .section--indexed .section__index .section__index-num {
    font-size: 3rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  .section--indexed .section__body {
    grid-column: 3/-1;
  }
}.sec-head {
  margin-bottom: 4rem;
}
.sec-head__title {
  font-family: "Tilt Warp", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFE79C;
  font-size: clamp(2.4rem, 5.6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 18ch;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .sec-head__title {
      opacity: 0;
      animation: reveal-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
.sec-head__lead {
  margin-top: 1.5rem;
  max-width: 60ch;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #C7D4D1;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .sec-head__lead {
      opacity: 0;
      animation: reveal-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 28%;
    }
  }
}.about__facts {
  position: relative;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: rgba(6, 50, 44, 0.46);
  backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  -webkit-backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  border: 1px solid rgba(186, 240, 212, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -12px 28px rgba(0, 0, 0, 0.14), 0 12px 36px rgba(0, 0, 0, 0.3);
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about__facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about__facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #F1B800;
  z-index: 1;
}
.about__fact {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.15rem, 2vw, 1.75rem);
  box-shadow: inset 1px 0 0 rgba(186, 240, 212, 0.16), inset 0 1px 0 rgba(186, 240, 212, 0.16);
}
.about__fact::before {
  content: "+";
  position: absolute;
  top: -0.5rem;
  left: -0.42rem;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.72rem;
  line-height: 1;
  color: rgba(241, 184, 0, 0.22);
  pointer-events: none;
}
.about__fact-key {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  font-size: 0.6875rem;
}
.about__fact-val {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFE79C;
}.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team__card {
  position: relative;
  position: relative;
  background: rgba(6, 50, 44, 0.46);
  backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  -webkit-backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  border: 1px solid rgba(186, 240, 212, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -12px 28px rgba(0, 0, 0, 0.14), 0 12px 36px rgba(0, 0, 0, 0.3);
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.32, 0.72, 0, 1);
}
.team__card:hover {
  border-color: rgba(186, 240, 212, 0.3);
  background: rgba(10, 63, 55, 0.6);
  transform: translateY(-4px);
}
.team__card:hover .team__avatar {
  filter: grayscale(0) contrast(1);
}
.team__card:hover .team__github {
  border-color: rgba(241, 184, 0, 0.34);
  color: #FFE79C;
}
.team__card:hover .team__github-arrow {
  transform: translate(3px, -3px);
  color: #F1B800;
}
.team__photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-bottom: 1px solid rgba(186, 240, 212, 0.16);
}
.team__photo::before {
  content: "+";
  position: absolute;
  top: 0.4rem;
  left: 0.45rem;
  z-index: 2;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.8rem;
  line-height: 1;
  color: rgba(241, 184, 0, 0.22);
}
.team__avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(0.4) contrast(1.02);
  transition: filter 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}
.team__name {
  font-family: "Tilt Warp", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFE79C;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.team__role {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  font-size: 0.6875rem;
  color: #F1B800;
  margin-bottom: 1.5rem;
}
.team__bio {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #C7D4D1;
  flex: 1;
}
.team__github {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 2rem;
  padding: 0.55rem 0.875rem;
  border: 1px solid rgba(244, 241, 232, 0.17);
  border-radius: 12px;
  color: #C7D4D1;
  font-size: 0.875rem;
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team__github-handle {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.75rem;
}
.team__github-arrow {
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services__card {
  position: relative;
  position: relative;
  background: rgba(6, 50, 44, 0.46);
  backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  -webkit-backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  border: 1px solid rgba(186, 240, 212, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -12px 28px rgba(0, 0, 0, 0.14), 0 12px 36px rgba(0, 0, 0, 0.3);
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  overflow: hidden;
  padding: 2rem;
}
.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #F1B800;
  opacity: 0.32;
  transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.services__card:hover {
  border-color: rgba(186, 240, 212, 0.3);
  background: rgba(10, 63, 55, 0.6);
}
.services__card:hover::before {
  opacity: 1;
}
.services__card:hover .services__title {
  color: #F1B800;
}
.services__card:hover .services__icon {
  color: #FFE89E;
}
.services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.services__icon {
  display: inline-flex;
  font-size: 1.55rem;
  color: #F1B800;
  transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.services__icon svg {
  display: block;
  stroke-width: 1.6;
}
.services__num {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #8CA09B;
  font-variant-numeric: tabular-nums;
}
.services__num::before {
  content: "// ";
  font-size: 0.75rem;
  vertical-align: 0.35em;
  color: #8CA09B;
}
.services__title {
  font-family: "Tilt Warp", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFE79C;
  font-size: 1.75rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.services__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #C7D4D1;
}
.services__marquee {
  margin-top: 4rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 11%, #000 89%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 11%, #000 89%, transparent 100%);
}
.services__marquee:hover .services__track {
  animation-play-state: paused;
}
.services__track {
  display: flex;
  width: max-content;
  animation: stack-scroll 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .services__track {
    animation: none;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.services__tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.6rem;
  padding: 0.5rem 0.9rem;
  background: rgba(6, 50, 44, 0.46);
  backdrop-filter: blur(22px) saturate(150%) brightness(1.06);
  -webkit-backdrop-filter: blur(22px) saturate(150%) brightness(1.06);
  border: 1px solid rgba(186, 240, 212, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #C7D4D1;
}
.services__tag:hover {
  border-color: rgba(186, 240, 212, 0.3);
  background: rgba(10, 63, 55, 0.6);
  color: #F1B800;
}
.services__tag-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: #F1B800;
}

@keyframes stack-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}.contact__email {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2rem;
  position: relative;
  background: rgba(6, 50, 44, 0.46);
  backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  -webkit-backdrop-filter: blur(30px) saturate(150%) brightness(1.06);
  border: 1px solid rgba(186, 240, 212, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -12px 28px rgba(0, 0, 0, 0.14), 0 12px 36px rgba(0, 0, 0, 0.3);
  transition: border-color 240ms cubic-bezier(0.4, 0, 0.2, 1), background-color 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  color: #FFE79C;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 2px 0 -1px rgba(241, 184, 0, 0.1), inset 0 -12px 28px rgba(0, 0, 0, 0.14), 0 12px 36px rgba(0, 0, 0, 0.3);
}
.contact__email:hover {
  border-color: rgba(186, 240, 212, 0.3);
  background: rgba(10, 63, 55, 0.6);
}
.contact__email:hover .contact__email-arrow {
  transform: translate(4px, -4px);
  color: #FFE89E;
}
.contact__email:hover .contact__email-prompt {
  color: #FFE89E;
}
.contact__email-prompt {
  flex-shrink: 0;
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  line-height: 1;
  color: #F1B800;
  transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__email-text {
  font-family: "Tilt Warp", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFE79C;
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
  word-break: break-word;
}
.contact__email-text::after {
  content: "_";
  margin-left: 0.08em;
  color: #F1B800;
}
@media (prefers-reduced-motion: no-preference) {
  .contact__email-text::after {
    animation: contactCaret 1.1s steps(1) infinite;
  }
}
.contact__email-arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: #F1B800;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__note {
  margin-top: 2rem;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #C7D4D1;
}

@keyframes contactCaret {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}.footer {
  position: relative;
  border-top: 1px solid rgba(241, 184, 0, 0.32);
  background: #381E00;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  pointer-events: none;
  background-image: repeating-linear-gradient(to right, rgba(241, 184, 0, 0.32) 0, rgba(241, 184, 0, 0.32) 1px, transparent 1px, transparent 28px);
  opacity: 0.6;
}
.footer__container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    padding-inline: 4rem;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-block: 2rem;
}
@media (min-width: 1100px) {
  .footer__container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 1100px) {
  .footer__brand {
    flex: 1 1 0;
    align-items: flex-start;
  }
}
.footer__wordmark {
  position: relative;
  font-family: "Tilt Warp", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFE79C;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: #FFE79C;
  padding-left: 1.4rem;
}
.footer__wordmark::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.85rem;
  color: #F1B800;
}
.footer__tag {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AAB9B5;
  color: rgba(255, 231, 156, 0.68);
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1100px) {
  .footer__meta {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.4rem;
  }
}
.footer__top {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 231, 156, 0.62);
  transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__top:hover {
  color: #F1B800;
}
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
@media (min-width: 1100px) {
  .footer__socials {
    flex: 1 1 0;
    justify-content: flex-end;
  }
}
.footer__socials .social-icon {
  color: rgba(255, 231, 156, 0.7);
  border-color: rgba(255, 231, 156, 0.18);
}
.footer__socials .social-icon:hover {
  color: #FFE79C;
  border-color: #FFE79C;
  background: rgba(255, 231, 156, 0.08);
}
.footer__copyright {
  font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: 0.75rem;
  color: rgba(255, 231, 156, 0.62);
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .footer__copyright {
    flex: 0 0 auto;
    text-align: center;
  }
}@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-500-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-500-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Tilt Warp";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tilt-warp-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Tilt Warp";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tilt-warp-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: #FFE79C;
  background: #001D25;
  -webkit-text-size-adjust: 100%;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: #F1B800;
  color: #001D25;
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #001D25;
}

::-webkit-scrollbar-thumb {
  background: rgba(244, 241, 232, 0.17);
  border: 3px solid #001D25;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(241, 184, 0, 0.32);
}

@keyframes reveal-up {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}