@import url("/css/space-grotesk.css");

:root {
  --st-accent: 45 212 191;
  --st-page-bg: #030609;
  
  --bg-primary: var(--st-page-bg) !important;
  
  --font-space-grotesk: "Space Grotesk", "Space Grotesk Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}



.tech-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}



.tech-card {
  position: relative;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2.5rem;
  overflow: hidden;
  transition:
    border-color 300ms cubic-bezier(.25, .8, .25, 1),
    transform 300ms cubic-bezier(.25, .8, .25, 1),
    box-shadow 300ms cubic-bezier(.25, .8, .25, 1);
}

.tech-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}


.tech-card h2,
.tech-card h3 {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.75rem;
}


.tech-card p,
.tech-card .tech-card-body {
  line-height: 1.6;
  color: #94a3b8;
  font-size: 0.9rem;
}


.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(.25, .8, .25, 1);
}

.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(-45deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(.25, .8, .25, 1);
}

.tech-card:hover::before,
.tech-card:hover::after {
  opacity: 1;
}



.alpha-emphasis {
  color: #e2e8f0;
  font-weight: 450;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}



footer .grid.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (max-width: 767px) {
  footer .grid.grid-cols-1 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  
  footer .grid.grid-cols-1>div:first-child {
    grid-column: 1 / -1;
  }

  
  footer .grid.grid-cols-1>div:nth-child(2),
  footer .grid.grid-cols-1>div:nth-child(3) {
    grid-column: span 1;
  }
}




[class*="bg-[rgba(17,17,19,0.32)"] {
  transition:
    border-color 300ms cubic-bezier(.25, .8, .25, 1),
    transform 300ms cubic-bezier(.25, .8, .25, 1),
    box-shadow 300ms cubic-bezier(.25, .8, .25, 1) !important;
}

[class*="bg-[rgba(17,17,19,0.32)"]:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


[class*="grid-rows-[4.5rem_auto]"] {
  position: relative;
  padding: 2rem;
  background: rgba(20, 20, 25, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  transition:
    border-color 300ms cubic-bezier(.25, .8, .25, 1),
    transform 300ms cubic-bezier(.25, .8, .25, 1);
}

[class*="grid-rows-[4.5rem_auto]"]:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}




[class*="bg-bg-secondary/40"] {
  background: rgba(20, 20, 25, 0.4) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.08) !important;
  transition:
    border-color 300ms cubic-bezier(.25, .8, .25, 1),
    transform 300ms cubic-bezier(.25, .8, .25, 1),
    box-shadow 300ms cubic-bezier(.25, .8, .25, 1) !important;
}

[class*="bg-bg-secondary/40"]:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}


[class*="bg-bg-secondary/40"]:hover>div[style*="opacity:0"] {
  opacity: 1 !important;
}


[class*="bg-bg-secondary/40"] ul.grid li {
  transition: transform 200ms ease-out;
}

[class*="bg-bg-secondary/40"] ul.grid li:hover {
  transform: translateX(4px);
}




.st-form-shell {
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
}


.bg-bg-tertiary {
  transition:
    border-color 200ms ease-out,
    box-shadow 200ms ease-out !important;
}

.bg-bg-tertiary:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.bg-bg-tertiary:focus {
  box-shadow:
    0 0 0 3px rgba(20, 184, 166, 0.1),
    0 0 20px rgba(20, 184, 166, 0.08) !important;
}


header.header-scrolled {
  background: rgba(3, 5, 9, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}


@supports not (backdrop-filter: blur(12px)) {
  header.header-scrolled {
    background: rgba(3, 5, 9, 0.92) !important;
  }
}

html,
body {
  background: var(--st-page-bg) !important;
  background-color: var(--st-page-bg) !important;
  font-family: var(--font-space-grotesk) !important;
  overflow-x: hidden !important;
}


html,
body {
  overflow: -moz-scrollbars-none !important;
  scrollbar-width: none !important;
  
  -ms-overflow-style: none !important;
  
}

html,
body,
* {
  scrollbar-width: none !important;
  
  -ms-overflow-style: none !important;
  
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  visibility: hidden !important;
  opacity: 0 !important;
}


.font-sans,
[class*="font-sans"],
body,
html,
.inter_7b064e0d-module__MOT0tq__className,
.inter_7b064e0d-module__MOT0tq__variable,
[class*="inter_"] {
  font-family: var(--font-space-grotesk) !important;
}


:root {
  --font-inter: var(--font-space-grotesk) !important;
  --default-font-family: var(--font-space-grotesk) !important;
}


.bg-bg-primary {
  background: var(--st-page-bg) !important;
  background-color: var(--st-page-bg) !important;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  #twinkle-stars-canvas,
  #aurora-canvas,
  #constraint-lattice {
    display: none !important;
  }
}


@media (max-width: 768px) {

  
  .animate-pulse-glow,
  .animate-float,
  .animate-breathe,
  .animate-breathe-slow,
  .animate-spin-slow,
  .animate-spin-slower,
  .animate-reverse-spin,
  .animate-reverse-spin-slower,
  .animate-scroll-hint,
  .animate-marquee,
  .animate-shimmer,
  .orbit-ring-glint {
    animation: none !important;
  }

  
  .orbit-dot,
  .constellation-line {
    opacity: 0.7;
  }

  
  .animate-pulse-glow,
  .animate-breathe,
  .animate-breathe-slow {
    opacity: 0.5 !important;
  }

  
  *:not(a):not(button):not([class*="hover"]) {
    transition-property: color, background-color, border-color, opacity !important;
    transition-duration: 0.15s !important;
  }

  
  a,
  button,
  [role="button"],
  .btn {
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, opacity 0.2s ease-out !important;
  }

  
  a,
  button,
  [role="button"],
  .group {
    transform: none !important;
  }

  
  button:active,
  a[role="button"]:active {
    transform: none !important;
    opacity: 0.9;
  }

  
  #aurora-canvas,
  #constraint-lattice {
    opacity: 0.35 !important;
  }

  
  .hero-parallax {
    --hero-parallax-x: 0px !important;
    --hero-parallax-y: 0px !important;
  }

  
  input:focus,
  textarea:focus,
  select:focus {
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out !important;
  }

  
  .console-container {
    animation: none !important;
  }

  
  section {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.3s ease-out !important;
  }

  
  #cursor-trail {
    display: none !important;
  }

  
  .console-menu,
  #shortcuts-modal {
    animation: none !important;
    transform: translate(-50%, -50%) !important;
  }

  
  header {
    transition: background-color 0.2s ease-out, border-color 0.2s ease-out !important;
  }

  
  [class*="md:hidden"].overflow-hidden {
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out !important;
  }

  
  .text-gradient-premium {
    animation: none !important;
    background-position: 0% 0% !important;
  }

  
  img[loading="lazy"],
  img[loading="lazy"].loaded {
    transition: opacity 0.15s ease-in !important;
  }
}

main {
  font-size: 17px;
  line-height: 1.65;
}

@media (min-width:1024px) {
  main {
    font-size: 18px;
    line-height: 1.72;
  }
}


.max-w-2xl>p,
.max-w-3xl>p,
.max-w-4xl>p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}


section.py-24 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media (max-width:640px) {
  section.py-24 {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }
}


a:focus-visible,
button:focus-visible {
  outline: 2px solid rgb(var(--st-accent) / 0.85);
  outline-offset: 3px;
}


main a:not(.inline-flex):not(.flex):not([class*="btn"]):not([class*="group"]) {
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.18em;
  text-decoration-color: rgb(var(--st-accent) / 0.45);
}

main a:not(.inline-flex):not(.flex):not([class*="btn"]):not([class*="group"]):hover {
  text-decoration-color: rgb(var(--st-accent) / 0.75);
}


section.py-24.px-6.relative.overflow-hidden div.relative>div.hidden.md\:block.absolute {
  display: none !important;
}

section.py-24.px-6.relative.overflow-hidden .space-y-10 {
  counter-reset: st-step;
}

section.py-24.px-6.relative.overflow-hidden .space-y-10>.flex.items-start.gap-6 {
  position: relative;
  padding: 1.25rem 1.25rem 1.15rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  gap: 1rem !important;
}

section.py-24.px-6.relative.overflow-hidden .space-y-10>.flex.items-start.gap-6:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgba(var(--st-accent) / 0.0), rgba(var(--st-accent) / 0.65), rgba(var(--st-accent) / 0.0));
  opacity: 0.9;
}

section.py-24.px-6.relative.overflow-hidden .space-y-10>.flex.items-start.gap-6:after {
  counter-increment: st-step;
  content: counter(st-step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 250, 0.65);
  padding: 6px 9px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(var(--st-accent) / 0.08);
}

section.py-24.px-6.relative.overflow-hidden .space-y-10>.flex.items-start.gap-6>div.flex-shrink-0.w-20.h-20.rounded-xl {
  display: none !important;
}

section.py-24.px-6.relative.overflow-hidden .space-y-10>.flex.items-start.gap-6>div.pt-1 {
  padding-top: 0 !important;
}

section.py-24.px-6.relative.overflow-hidden .space-y-10>.flex.items-start.gap-6>div.pt-1>h3 {
  padding-right: 68px;
}


@media (max-width:640px) {
  #twinkle-stars-canvas {
    opacity: 0.42 !important
  }

  #aurora-canvas {
    opacity: 0.32 !important
  }

  #constraint-lattice {
    opacity: 0.14 !important
  }
}


#twinkle-stars-canvas,
#aurora-canvas,
#constraint-lattice {
  will-change: opacity, transform;
}


#contact-form-shell {
  position: relative;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.78), rgba(10, 10, 11, 0.55));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow .25s cubic-bezier(.16, 1, .3, 1), border-color .25s cubic-bezier(.16, 1, .3, 1), background .25s cubic-bezier(.16, 1, .3, 1);
  isolation: isolate;
  overflow: hidden;
}

#contact-form-shell:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(520px circle at 50% 0%,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.0) 55%);
  opacity: 0;
  transition: opacity .25s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  mix-blend-mode: normal;
  z-index: 0;
}

#contact-form-shell:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(20, 184, 166, 0.38),
      rgba(255, 255, 255, 0.10),
      rgba(20, 184, 166, 0.08),
      rgba(255, 255, 255, 0.04));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.22;
  transition: opacity .25s cubic-bezier(.16, 1, .3, 1);
  z-index: 0;
}

#contact-form-shell.st-burst {
  animation: st-shell-burst 900ms cubic-bezier(.16, 1, .3, 1) both;
}

#contact-form-shell.st-burst:before {
  opacity: 1;
  animation: st-shell-flash 520ms cubic-bezier(.16, 1, .3, 1) both;
}

#contact-form-shell.st-burst:after {
  opacity: 0.70;
  animation: st-shell-border 900ms cubic-bezier(.16, 1, .3, 1) both;
}

#contact-form-shell .st-warp {
  position: absolute;
  inset: -22%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  filter: blur(10px) saturate(1.15);
  mix-blend-mode: screen;
  background:
    radial-gradient(60% 60% at var(--st-ox, 50%) var(--st-oy, 60%),
      rgba(20, 184, 166, 0.28),
      rgba(20, 184, 166, 0.0) 60%),
    conic-gradient(from 180deg at var(--st-ox, 50%) var(--st-oy, 60%),
      rgba(0, 210, 239, 0.0),
      rgba(0, 210, 239, 0.35),
      rgba(20, 184, 166, 0.15),
      rgba(250, 250, 250, 0.18),
      rgba(20, 184, 166, 0.10),
      rgba(0, 210, 239, 0.0));
  mask-image: radial-gradient(circle at var(--st-ox, 50%) var(--st-oy, 60%),
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 1.0) 22%,
      rgba(0, 0, 0, 1.0) 70%,
      rgba(0, 0, 0, 0.0) 100%);
  transform: scale(0.92) rotate(-12deg);
  animation: st-warp 820ms cubic-bezier(.16, 1, .3, 1) both;
}

#contact-form-shell .st-warp:before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at var(--st-ox, 50%) var(--st-oy, 60%),
      rgba(250, 250, 250, 0.20) 0%,
      rgba(250, 250, 250, 0.0) 40%);
  opacity: 0.65;
}

@keyframes st-warp {
  0% {
    opacity: 0;
    transform: scale(0.86) rotate(-16deg)
  }

  14% {
    opacity: 0.95
  }

  55% {
    opacity: 0.35;
    transform: scale(1.02) rotate(22deg)
  }

  100% {
    opacity: 0;
    transform: scale(1.08) rotate(38deg)
  }
}

@keyframes st-shell-burst {
  0% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.40),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  22% {
    transform: translateY(-1px) scale(1.01);
    box-shadow:
      0 18px 80px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(20, 184, 166, 0.16),
      0 0 60px rgba(20, 184, 166, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(20, 184, 166, 0.16);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 12px 52px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

@keyframes st-shell-flash {
  0% {
    opacity: 0
  }

  20% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

@keyframes st-shell-border {
  0% {
    opacity: 0.22
  }

  30% {
    opacity: 0.85
  }

  100% {
    opacity: 0.22
  }
}

#contact-form-shell>form {
  position: relative;
  z-index: 1;
}

#contact-form-shell .st-burst-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {

  #contact-form-shell,
  #contact-form-shell:before,
  #contact-form-shell:after {
    transition: none !important;
  }
}

#contact-form #form-status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .28s cubic-bezier(.16, 1, .3, 1), transform .28s cubic-bezier(.16, 1, .3, 1);
}

#contact-form #form-status.st-show {
  opacity: 1;
  transform: translateY(0);
}

#contact-form #form-status.st-success {
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.10), 0 10px 40px rgba(20, 184, 166, 0.10);
}

#contact-form #form-status.st-error {
  border-color: rgba(251, 44, 54, 0.35);
  box-shadow: 0 0 0 1px rgba(251, 44, 54, 0.10), 0 10px 40px rgba(251, 44, 54, 0.08);
}

#contact-form .st-status-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

#contact-form .st-status-text {
  flex: 1 1 auto;
}

#contact-form .st-check {
  width: 18px;
  height: 18px;
}

#contact-form .st-check path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: st-draw-check .52s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes st-draw-check {
  to {
    stroke-dashoffset: 0
  }
}

#contact-form #submit-btn {
  position: relative;
}

#contact-form #submit-btn.st-loading {
  cursor: progress;
}

#contact-form #submit-btn .st-spinner {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(20, 184, 166, 0.75);
  animation: st-spin .85s linear infinite;
  display: none;
}

#contact-form #submit-btn.st-loading .st-spinner {
  display: inline-block;
}

@keyframes st-spin {
  to {
    transform: rotate(360deg)
  }
}

#contact-form #submit-btn.st-success-pulse:after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.22) 0%, rgba(20, 184, 166, 0.0) 60%);
  opacity: 0;
  animation: st-success-pulse .75s cubic-bezier(.16, 1, .3, 1) forwards;
  pointer-events: none;
}

@keyframes st-success-pulse {
  0% {
    opacity: 0;
    transform: scale(0.98)
  }

  30% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: scale(1.06)
  }
}

#contact-form .st-field-error {
  margin-top: 6px;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(251, 44, 54, 0.95);
}

#contact-form input.st-field-invalid,
#contact-form select.st-field-invalid,
#contact-form textarea.st-field-invalid {
  border-color: rgba(251, 44, 54, 0.55);
  box-shadow: 0 0 0 1px rgba(251, 44, 54, 0.10), 0 0 0 4px rgba(251, 44, 54, 0.08);
}

#contact-form .st-char-count {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

#contact-form .st-char-count.st-over {
  color: rgba(251, 44, 54, 0.92);
}

#contact-form .st-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.console-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.console-btn:hover {
  transform: scale(1.15) translateY(-1px);
}

.console-btn:active {
  transform: scale(1.05) translateY(0);
}


.marquee-content {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}


.hero-parallax h1 {
  transition: transform 0.3s ease-out;
}

.hero-parallax h1:hover {
  transform: scale(1.02);
}


a[href]:hover,
button:hover {
  filter: brightness(1.05);
}


*:focus-visible {
  transition: outline 0.2s ease-out;
}


#engine-log-container>div:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  padding-left: 4px;
  margin-left: -4px;
  transition: all 0.2s ease-out;
}





::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

::-webkit-scrollbar-thumb:hover {
  display: none;
}


::selection {
  background: rgba(20, 184, 166, 0.3);
  color: #fafafa;
}


html {
  scroll-behavior: smooth;
}


button:active,
a[role="button"]:active {
  transform: scale(0.98);
}


.console-container {
  animation: subtle-float 6s ease-in-out infinite;
}

@keyframes subtle-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .console-container {
    animation: none;
  }
}


[data-time-of-day="morning"] .hero-parallax {
  filter: brightness(1.05);
}

[data-time-of-day="evening"] .hero-parallax {
  filter: brightness(0.95);
}


html {
  --scroll-progress: 0;
}


*:focus-visible {
  outline: 2px solid rgba(20, 184, 166, 0.6);
  outline-offset: 2px;
  border-radius: 2px;
}


img {
  transition: opacity 0.3s ease-in;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}


.console-menu {
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


kbd {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.85em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}


#mouse-distance-indicator {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}


html,
body {
  overflow: -moz-scrollbars-none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar,
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
  width: 0px !important;
  height: 0px !important;
  display: none !important;
  background: transparent !important;
  visibility: hidden !important;
  opacity: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  width: 0px !important;
  height: 0px !important;
  display: none !important;
  background: transparent !important;
  visibility: hidden !important;
  opacity: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  width: 0px !important;
  height: 0px !important;
  display: none !important;
  background: transparent !important;
  visibility: hidden !important;
  opacity: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none !important;
}