@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;0,800;1,600&display=swap");
html {
  --neon-green: #00ff88;
  --rich-gold: #d4af37;
  --warm-yellow: #ffeb3b;
  --sienna: #8b4513;
  --saddle-brown: #a0522d;
  --bg-black: #0a0a0a;
  --bg-dark: #121212;
  --bg-darker: #1a1a1a;
  --text-light: #e0e0e0;
  --text-medium: #a0a0a0;
  --text-dark: #606060;
  --green-glow: rgba(0, 255, 136, 0.5);
  --gold-glow: rgba(212, 175, 55, 0.3);
  --mainColor: var(--neon-green);
  --secondColor: var(--rich-gold);
  --thirdColor: var(--bg-darker);
  --pink: #fb839e;
  --green-alt: var(--neon-green);
  --purple: #8a49ff;
  --bg: var(--bg-black);
  --darkBlue: var(--bg-dark);
  --white: var(--text-light);
  --whiteLight: var(--text-medium);
  --footerOverlay: rgba(10, 10, 10, 0.95);
  --footerCardBg: rgba(18, 18, 18, 0.8);
  --footerCardBorder: rgba(0, 255, 136, 0.1);
  --footerSocialBg: rgba(18, 18, 18, 0.8);
  --footerSocialBgHover: var(--neon-green);
  --introBg: var(--bg-black);
  --introGrid: rgba(0, 255, 136, 0.3);
  --sliderBg: var(--bg-darker);
  --gradientStart: var(--neon-green);
  --gradientMid: var(--rich-gold);
  --gradientEnd: var(--warm-yellow);
}

::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px 0;
}

::-webkit-scrollbar-track {
  background-color: var(--bg);
}

::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}

.intro {
  background: var(--bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}
.intro-text {
  color: var(--thirdColor);
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
}
.intro-btn {
  display: block;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--white);
  border: 1px solid var(--white);
  outline: none;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
  background: none;
  transition: 0.8s ease-out;
  position: relative;
  margin-top: 2em;
  z-index: 10;
  transform: translateX(-75%);
}
.intro-btn:hover {
  color: var(--bg);
  cursor: crosshair;
}
.intro-btn::before {
  content: "";
  position: absolute;
  background: var(--white);
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  transition: top 0.8s ease-out;
  z-index: -9;
}
.intro-btn:hover::before {
  top: 0;
}

.slider {
  background: var(--green-alt);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 1000;
}
.slider-2 {
  background: var(--purple);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 1000;
}

.hide {
  background: var(--bg);
  overflow: hidden;
}
.hide span {
  transform: translateY(100%);
  display: inline-block;
}

.cursor-effect {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-backdrop-filter: invert(1);
          backdrop-filter: invert(1);
}

.link-grow {
  transform: scale(2);
  transform-origin: 100% 100%;
  background: rgba(255, 255, 255, 0.3);
}

.effect-wrap .effect {
  position: absolute;
  z-index: 1;
}
.effect-wrap .effect-1 {
  width: 20px;
  height: 20px;
  border: 3px solid var(--purple);
  right: 10%;
  bottom: 10%;
  animation: spin 10s linear infinite;
}
.effect-wrap .effect-2 {
  left: 3%;
  bottom: 20%;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: topBounce 3s ease-in-out infinite;
}
.effect-wrap .effect-2 div {
  height: 3px;
  width: 3px;
  background-color: var(--pink);
  margin: 0 3px 8px;
  border-radius: 50%;
}
.effect-wrap .effect-3 {
  border-top: 25px solid transparent;
  border-left: 25px solid var(--green-alt);
  left: 30%;
  top: 10%;
  animation: spin 15s linear infinite;
}
.effect-wrap .effect-3::before {
  content: "";
  border-top: 30px solid transparent;
  border-left: 30px solid var(--mainColor);
  position: absolute;
  opacity: 0.5;
  right: 0px;
  top: -25px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes topBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
}
.inner {
  background: var(--green-alt);
  border-radius: 10px;
  max-width: 250px;
  clip-path: circle(10% at 83% 18%);
  padding: 2rem;
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  z-index: 100;
}
.inner:hover {
  clip-path: circle(75%);
  background: linear-gradient(to bottom left, var(--green-alt), var(--darkBlue));
}
.inner span {
  float: right;
  color: var(--white);
  font-style: italic;
  font-weight: bold;
  transition: color 0.5s;
  position: relative;
  margin-right: 5%;
}
.inner:hover span {
  color: rgba(255, 255, 255, 0);
}
.inner h1 {
  color: var(--white);
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
}
.inner p {
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: 300;
}
.inner a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.75rem;
  border-bottom: 3px dotted var(--mainColor);
}

input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
input[type=checkbox]:checked + label {
  background: var(--mainColor);
}
input[type=checkbox]:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.toggle {
  cursor: pointer;
  text-indent: -9999px;
  width: 52px;
  height: 27px;
  background: lightgray;
  float: right;
  border-radius: 100px;
  position: absolute;
  bottom: -20px;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
.toggle:active:after {
  width: 45px;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}

.toggle-container {
  margin-top: 2rem;
  position: relative;
}
.toggle-container.toggle-centered {
  display: flex;
  justify-content: flex-start;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

::before,
::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  font-weight: 600;
}

body {
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: var(--white);
  min-height: 100vh;
  max-width: 100%;
  background: var(--bg);
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  cursor: none;
}
body::before {
  --size: 45px;
  --line: rgba(255, 255, 255, 0.08);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) calc(var(--size) * 0.36) 50%/var(--size) var(--size), linear-gradient(var(--line) 1px, transparent 1px var(--size)) 0% calc(var(--size) * 0.32)/var(--size) var(--size);
  mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, transparent 0%, white 30%, white 100%), radial-gradient(ellipse 100% 100% at 0% 100%, transparent 0%, white 20%, white 100%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, transparent 0%, white 30%, white 100%), radial-gradient(ellipse 100% 100% at 0% 100%, transparent 0%, white 20%, white 100%);
  -webkit-mask-composite: source-in;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

html[data-theme=light] body::before {
  --line: rgba(0, 0, 0, 0.08);
}

a {
  text-decoration: none;
  color: var(--secondColor);
  cursor: crosshair;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.container {
  margin: auto;
  width: 100%;
  max-width: 1480px;
}

.content {
  position: relative;
  z-index: 10;
  transform: translateY(100%);
}

header {
  position: relative;
  z-index: 10;
}

.landing-text {
  position: absolute;
  bottom: 15%;
  left: 5%;
  max-width: 600px;
  z-index: 50;
  opacity: 0;
}
.landing-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.landing-text p, .landing-text h5 {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
}
.landing-text p i, .landing-text h5 i {
  color: var(--neon-green);
  font-style: italic;
}
@media (max-width: 768px) {
  .landing-text {
    bottom: 10%;
    left: 2rem;
    right: 2rem;
    max-width: none;
  }
}

.logo-repositioned {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  z-index: 50;
  opacity: 0;
}
.logo-repositioned img {
  width: 100%;
  height: 100%;
}

.intro__logo {
  margin-bottom: 2rem;
  opacity: 0;
}
.intro__logo img {
  width: 100px;
  height: 100px;
}

.simple-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-right: 60px;
}
@media (max-width: 768px) {
  .simple-logo {
    width: 60px;
    height: 60px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.simple-logo i {
  font-size: 60px;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .simple-logo i {
    font-size: 45px;
  }
}

button {
  font-family: inherit;
  font-weight: inherit;
}

section {
  padding: 15rem 0;
}

.section-title {
  padding: 0 15px;
  width: 100%;
  margin-bottom: 40px;
}
.section-title h2 {
  text-align: center;
  font-size: 40px;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
.about .profile-img {
  animation: imageFadeIn 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry 0% contain 30%;
  will-change: opacity;
}
.about .profile-img img {
  transition: transform 0.3s ease;
}
.about .about-content {
  animation: slideInRight 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry 10% contain 40%;
  will-change: transform, opacity;
}

.services .service-item {
  --index: 0;
  --entry-start: 0%;
  --entry-step: 10%;
  --entry: calc(var(--entry-start) + (var(--index) - 1) * var(--entry-step));
  animation: serviceCardUp 1ms ease-out both;
  animation-timeline: view(block);
  animation-range: entry var(--entry) contain 60%;
  will-change: transform, opacity;
}
.services .service-item:nth-child(1) {
  --index: 1;
}
.services .service-item:nth-child(2) {
  --index: 2;
}
.services .service-item:nth-child(3) {
  --index: 3;
}
.services .service-item ion-icon {
  animation: iconRotate 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry var(--entry) contain 65%;
  will-change: transform, opacity;
}

.project h5, .project h2 {
  animation: titleSlideIn 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry 0% contain 25%;
  will-change: transform, opacity;
}
.project .project-item-container .project-box {
  --box-index: 0;
  --entry-start: 5%;
  --entry-step: 8%;
  --project-entry: calc(var(--entry-start) + (var(--box-index) - 1) * var(--entry-step));
  animation: projectCardFade 1ms ease-out both;
  animation-timeline: view(block);
  animation-range: entry var(--project-entry) contain 50%;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.project .project-item-container .project-box:nth-child(1) {
  --box-index: 1;
}
.project .project-item-container .project-box:nth-child(2) {
  --box-index: 2;
}
.project .project-item-container .project-box:nth-child(3) {
  --box-index: 3;
}
.project .project-item-container .project-box:nth-child(4) {
  --box-index: 4;
}
.project .project-item-container .project-box:nth-child(5) {
  --box-index: 5;
}
.project .project-item-container .project-box:nth-child(6) {
  --box-index: 6;
}
.project .project-item-container .project-box:nth-child(7) {
  --box-index: 7;
}
.project .project-item-container .project-box:nth-child(8) {
  --box-index: 8;
}
.project .project-item-container .project-box::before {
  content: "";
  position: absolute;
  width: 104%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(var(--rotate), var(--gradientStart), var(--gradientMid) 43%, var(--gradientEnd));
  z-index: -1;
  top: -1%;
  left: -2%;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
.project .project-item-container .project-box::after {
  content: "";
  position: absolute;
  top: 33%;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.8);
  filter: blur(50px);
  background-image: linear-gradient(var(--rotate), var(--gradientStart), var(--gradientMid) 43%, var(--gradientEnd));
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
.project .project-item-container .project-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.project .project-item-container .project-box:hover::before, .project .project-item-container .project-box:hover::after {
  opacity: 1;
  animation: spin 2.5s linear infinite;
}

.contact .contact-title {
  animation: titleSlideIn 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry 0% contain 30%;
  will-change: transform, opacity;
}
.contact form {
  animation: formFadeIn 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry 20% contain 50%;
  will-change: opacity;
}

.footer {
  animation: footerSlideUp 1ms ease-out forwards;
  animation-timeline: view(block);
  animation-range: entry 0% contain 40%;
  will-change: transform, opacity;
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes serviceCardUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes iconRotate {
  from {
    transform: rotate(-180deg) scale(0.5);
    opacity: 0;
  }
  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}
@keyframes projectCardFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes titleSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes formFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes footerSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}
@supports not (animation-timeline: view()) {
  .about .profile-img,
  .about .about-content,
  .services .service-item,
  .project .project-box,
  .contact .contact-title,
  .contact form,
  .footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.tunnel-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  perspective: 1000px;
  background: var(--bg-black);
}
.tunnel-grid .grid-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(60deg);
  animation: tunnelRotate 25s linear infinite;
  will-change: transform;
}
.tunnel-grid .grid-line-h {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.15) 20%, rgba(0, 255, 136, 0.25) 50%, rgba(0, 255, 136, 0.15) 80%, transparent 100%);
  box-shadow: 0 0 4px rgba(0, 255, 136, 0.4);
  transform-origin: center;
}
.tunnel-grid .grid-line-h:nth-child(1) {
  top: 5%;
  opacity: 0.97;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.1s;
}
.tunnel-grid .grid-line-h:nth-child(2) {
  top: 10%;
  opacity: 0.94;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.2s;
}
.tunnel-grid .grid-line-h:nth-child(3) {
  top: 15%;
  opacity: 0.91;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.3s;
}
.tunnel-grid .grid-line-h:nth-child(4) {
  top: 20%;
  opacity: 0.88;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.4s;
}
.tunnel-grid .grid-line-h:nth-child(5) {
  top: 25%;
  opacity: 0.85;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
.tunnel-grid .grid-line-h:nth-child(6) {
  top: 30%;
  opacity: 0.82;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.6s;
}
.tunnel-grid .grid-line-h:nth-child(7) {
  top: 35%;
  opacity: 0.79;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.7s;
}
.tunnel-grid .grid-line-h:nth-child(8) {
  top: 40%;
  opacity: 0.76;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.8s;
}
.tunnel-grid .grid-line-h:nth-child(9) {
  top: 45%;
  opacity: 0.73;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.9s;
}
.tunnel-grid .grid-line-h:nth-child(10) {
  top: 50%;
  opacity: 0.7;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1s;
}
.tunnel-grid .grid-line-h:nth-child(11) {
  top: 55%;
  opacity: 0.67;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.1s;
}
.tunnel-grid .grid-line-h:nth-child(12) {
  top: 60%;
  opacity: 0.64;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
.tunnel-grid .grid-line-h:nth-child(13) {
  top: 65%;
  opacity: 0.61;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.3s;
}
.tunnel-grid .grid-line-h:nth-child(14) {
  top: 70%;
  opacity: 0.58;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.4s;
}
.tunnel-grid .grid-line-h:nth-child(15) {
  top: 75%;
  opacity: 0.55;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
.tunnel-grid .grid-line-h:nth-child(16) {
  top: 80%;
  opacity: 0.52;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.6s;
}
.tunnel-grid .grid-line-h:nth-child(17) {
  top: 85%;
  opacity: 0.49;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.7s;
}
.tunnel-grid .grid-line-h:nth-child(18) {
  top: 90%;
  opacity: 0.46;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.8s;
}
.tunnel-grid .grid-line-h:nth-child(19) {
  top: 95%;
  opacity: 0.43;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.9s;
}
.tunnel-grid .grid-line-h:nth-child(20) {
  top: 100%;
  opacity: 0.4;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 2s;
}
.tunnel-grid .grid-line-v {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.15) 20%, rgba(0, 255, 136, 0.25) 50%, rgba(0, 255, 136, 0.15) 80%, transparent 100%);
  box-shadow: 0 0 4px rgba(0, 255, 136, 0.4);
  transform-origin: center;
}
.tunnel-grid .grid-line-v:nth-child(21) {
  left: 6.25%;
  opacity: 0.96;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.15s;
}
.tunnel-grid .grid-line-v:nth-child(22) {
  left: 12.5%;
  opacity: 0.92;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.3s;
}
.tunnel-grid .grid-line-v:nth-child(23) {
  left: 18.75%;
  opacity: 0.88;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.45s;
}
.tunnel-grid .grid-line-v:nth-child(24) {
  left: 25%;
  opacity: 0.84;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.6s;
}
.tunnel-grid .grid-line-v:nth-child(25) {
  left: 31.25%;
  opacity: 0.8;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.75s;
}
.tunnel-grid .grid-line-v:nth-child(26) {
  left: 37.5%;
  opacity: 0.76;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 0.9s;
}
.tunnel-grid .grid-line-v:nth-child(27) {
  left: 43.75%;
  opacity: 0.72;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.05s;
}
.tunnel-grid .grid-line-v:nth-child(28) {
  left: 50%;
  opacity: 0.68;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
.tunnel-grid .grid-line-v:nth-child(29) {
  left: 56.25%;
  opacity: 0.64;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.35s;
}
.tunnel-grid .grid-line-v:nth-child(30) {
  left: 62.5%;
  opacity: 0.6;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
.tunnel-grid .grid-line-v:nth-child(31) {
  left: 68.75%;
  opacity: 0.56;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.65s;
}
.tunnel-grid .grid-line-v:nth-child(32) {
  left: 75%;
  opacity: 0.52;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.8s;
}
.tunnel-grid .grid-line-v:nth-child(33) {
  left: 81.25%;
  opacity: 0.48;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 1.95s;
}
.tunnel-grid .grid-line-v:nth-child(34) {
  left: 87.5%;
  opacity: 0.44;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 2.1s;
}
.tunnel-grid .grid-line-v:nth-child(35) {
  left: 93.75%;
  opacity: 0.4;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 2.25s;
}
.tunnel-grid .grid-line-v:nth-child(36) {
  left: 100%;
  opacity: 0.36;
  animation: lineGlow 4s ease-in-out infinite;
  animation-delay: 2.4s;
}
.tunnel-grid .distant-glow {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 80%;
  height: 60%;
  max-width: 800px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.35) 0%, rgba(0, 255, 136, 0.2) 30%, rgba(0, 255, 136, 0.08) 60%, transparent 80%);
  filter: blur(80px);
  animation: distantPulse 4s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes tunnelRotate {
  0% {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .tunnel-grid {
    transition: opacity 0.3s ease;
  }
}
@keyframes lineGlow {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
@keyframes distantPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, 50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 50%) scale(1.15);
  }
}
@media only screen and (max-width: 768px) {
  .tunnel-grid .grid-line-h:nth-child(n+11),
  .tunnel-grid .grid-line-v:nth-child(n+11) {
    display: none;
  }
  .tunnel-grid .distant-glow {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .tunnel-grid {
    opacity: 0.3;
  }
}
.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: top, left;
  backface-visibility: hidden;
  box-shadow: 0 0 8px var(--green-glow);
  transition: width 0.2s ease, height 0.2s ease;
}
.cursor-dot.active {
  width: 12px;
  height: 12px;
}

.cursor-effect {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: top, left;
  backface-visibility: hidden;
  mix-blend-mode: screen;
}
.cursor-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  opacity: 0.8;
  animation: glowPulse 2s ease-in-out infinite;
}
.cursor-effect::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250%;
  height: 250%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  opacity: 0.5;
}
.cursor-effect.link-grow {
  width: 30px;
  height: 30px;
  background: rgba(0, 255, 136, 0.3);
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 20px var(--green-glow), inset 0 0 10px var(--green-glow);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-effect.link-grow::before {
  width: 200%;
  height: 200%;
  opacity: 1;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes vhsGlitch {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  10% {
    transform: translate(-50.2%, -50.1%);
  }
  20% {
    transform: translate(-49.9%, -50%);
  }
  30% {
    transform: translate(-50%, -49.8%);
  }
  40% {
    transform: translate(-50.1%, -50.2%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  60% {
    transform: translate(-49.8%, -50.1%);
  }
  70% {
    transform: translate(-50.2%, -49.9%);
  }
  80% {
    transform: translate(-50%, -50.2%);
  }
  90% {
    transform: translate(-49.9%, -49.8%);
  }
}
@media only screen and (max-width: 768px) {
  .cursor-dot,
  .cursor-effect {
    display: none;
  }
}
.code-window {
  position: relative;
  background: var(--bg-darker);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 136, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.code-window .window-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}
.code-window .window-chrome .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.9;
}
.code-window .window-chrome .dot.red {
  background: #ff5f56;
  box-shadow: 0 0 8px rgba(255, 95, 86, 0.5);
}
.code-window .window-chrome .dot.yellow {
  background: #ffbd2e;
  box-shadow: 0 0 8px rgba(255, 189, 46, 0.5);
}
.code-window .window-chrome .dot.green {
  background: #27c93f;
  box-shadow: 0 0 8px rgba(39, 201, 63, 0.5);
}
.code-window pre {
  margin: 0;
  padding: 20px 24px;
  overflow-x: auto;
  background: transparent;
}
.code-window pre code {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  display: block;
  white-space: pre;
}
.code-window pre code .keyword {
  color: #c678dd;
  font-weight: 500;
}
.code-window pre code .class-name {
  color: #8be9fd;
  font-weight: 600;
}
.code-window pre code .function {
  color: #e5c07b;
}
.code-window pre code .string {
  color: #98c379;
}
.code-window pre code .property {
  color: #abb2bf;
}
.code-window pre code .comment {
  color: var(--text-dark);
  font-style: italic;
}
.code-window pre code .operator {
  color: var(--neon-green);
}
.code-window pre code .number {
  color: #ff6b9d;
}
.code-window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 255, 136, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 255, 136, 0.03) 3px);
  pointer-events: none;
  opacity: 0.5;
}
.code-window pre::-webkit-scrollbar {
  height: 8px;
}
.code-window pre::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}
.code-window pre::-webkit-scrollbar-thumb {
  background: var(--neon-green);
  border-radius: 4px;
}
.code-window pre::-webkit-scrollbar-thumb:hover {
  background: var(--rich-gold);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.tech-pills .tech-pill {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  color: var(--text-medium);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: default;
}
.tech-pills .tech-pill:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

@media only screen and (max-width: 768px) {
  .code-window pre code {
    font-size: 12px;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pills .tech-pill {
    padding: 6px 12px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .code-window pre {
    padding: 16px;
  }
  .code-window pre code {
    font-size: 11px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

@font-face {
  font-family: "San Francisco";
  font-weight: 400;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
@font-face {
  font-family: "San Francisco";
  font-weight: 800;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-bold-webfont.woff");
}
.menu-bar {
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  z-index: 1000;
  font-family: "San Francisco", -apple-system, BlinkMacSystemFont, sans-serif;
}
.menu-bar .left {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: auto;
  margin-left: 20px;
}
.menu-bar .left .menus {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 20px;
  color: var(--text-medium);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}
.menu-bar .left .menus:hover {
  color: var(--text-light);
}
.menu-bar .left .active {
  color: var(--neon-green) !important;
  position: relative;
}
.menu-bar .left .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--green-glow);
}
.menu-bar .right {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 15px;
  margin-right: 20px;
}
.menu-bar .right .menu-time {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  white-space: nowrap;
}
.menu-bar .right .menu-ico {
  height: 100%;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-bar .right .menu-ico:hover {
  transform: scale(1.1);
}
.menu-bar .right .menu-ico:hover i {
  color: var(--neon-green);
}
.menu-bar .right .menu-ico i {
  font-size: 14px;
  color: var(--text-medium);
  transition: color 0.2s ease;
}

.dock {
  position: fixed;
  z-index: 999;
  opacity: 0;
  animation: dockFadeIn 0.5s ease forwards;
  animation-delay: 2.5s;
}
@media (min-width: 769px) {
  .dock {
    right: 15px;
    top: 50%;
    width: 55px;
    height: auto;
  }
  @keyframes dockFadeIn {
    from {
      opacity: 0;
      transform: translateY(-50%) translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
  }
}
@media (max-width: 768px) {
  .dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 60px;
  }
  @keyframes dockFadeIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
}
.dock .dock-container {
  padding: 4px;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 12px;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--neon-green);
  box-shadow: 0 0 15px var(--green-glow), 0 6px 24px rgba(0, 0, 0, 0.4);
}
@media (min-width: 769px) {
  .dock .dock-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .dock .dock-container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .dock .dock-container .li-bin {
    margin-top: 15px;
    border-top: 1.5px solid var(--neon-green);
    padding-top: 15px;
    border-left: none;
  }
}
@media (max-width: 768px) {
  .dock .dock-container .li-bin {
    margin-left: 15px;
    border-left: 1.5px solid var(--neon-green);
    padding-left: 15px;
  }
}
.dock .dock-container .li-1 {
  position: relative;
}
.dock .dock-container .li-1::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--green-glow);
  content: "";
}
@media (min-width: 769px) {
  .dock .dock-container .li-1::after {
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .dock .dock-container .li-1::after {
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.dock .dock-container li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 1.5px 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
@media (min-width: 769px) {
  .dock .dock-container li {
    margin: 1.5px 0;
  }
  .dock .dock-container li:hover {
    margin: 1.5px 6px 1.5px -6px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .dock .dock-container li {
    margin: 0 2px;
    transform-origin: 50% 100%;
  }
  .dock .dock-container li:hover {
    margin: 0 8px;
  }
}
.dock .dock-container li .dock-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dock .dock-container li .name {
  position: absolute;
  background: rgba(18, 18, 18, 0.95);
  color: var(--text-light);
  border: 1px solid var(--neon-green);
  height: auto;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  white-space: nowrap;
  font-size: 12px;
  font-family: "San Francisco", -apple-system, BlinkMacSystemFont, sans-serif;
  pointer-events: none;
}
@media (min-width: 769px) {
  .dock .dock-container li .name {
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
  }
  .dock .dock-container li .name::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--neon-green);
  }
}
@media (max-width: 768px) {
  .dock .dock-container li .name {
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
  }
  .dock .dock-container li .name::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--neon-green);
  }
}
.dock .dock-container li:hover .name {
  visibility: visible;
  opacity: 1;
}
.dock .dock-container li .ico {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  color: var(--text-medium);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.dock .dock-container li .ico:hover {
  color: var(--neon-green);
  filter: drop-shadow(0 0 6px var(--green-glow));
}
.dock .dock-container li .ico-bin {
  width: 30px !important;
  height: 30px !important;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-medium);
}
.dock .dock-container li .ico-bin:hover {
  color: var(--neon-green);
  filter: drop-shadow(0 0 6px var(--green-glow));
}

.logo-repositioned {
  top: 3.5rem !important;
}

.inner-repositioned {
  top: 3.5rem !important;
}

.toggle-centered {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin: 2rem auto 0 !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

@media only screen and (max-width: 768px) {
  .menu-bar .left {
    margin-left: 10px;
  }
  .menu-bar .left .menus {
    margin-left: 10px;
    font-size: 12px;
  }
  .menu-bar .left .menus:nth-child(n+4) {
    display: none;
  }
  .menu-bar .right {
    margin-right: 10px;
    gap: 10px;
  }
  .menu-bar .right .menu-time {
    font-size: 11px;
  }
  .dock {
    bottom: 20px;
    height: 60px;
  }
  .dock .dock-container li {
    width: 45px;
    height: 45px;
    margin: 0 1px;
  }
  .dock .dock-container li:hover {
    margin: 0 6px;
  }
}
@media only screen and (max-width: 480px) {
  .dock .dock-container li {
    width: 40px;
    height: 40px;
  }
  .dock .dock-container li:nth-child(n+6) {
    display: none;
  }
}
.ai-chat-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: #0C0C0C;
  border: 2px solid #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3), inset 0 0 10px rgba(0, 255, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  animation: terminalPulse 2s infinite;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.ai-chat-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ai-chat-button ion-icon {
  font-size: 32px;
  color: #00ff88;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
}
.ai-chat-button::before {
  content: "OPEN_TERMINAL.EXE";
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #0C0C0C;
  color: #00ff88;
  padding: 0.5rem 0.75rem;
  border: 1px solid #00ff88;
  font-size: 0.75rem;
  font-family: "JetBrains Mono", "Courier New", monospace;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  letter-spacing: 0.5px;
}
.ai-chat-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.4), inset 0 0 15px rgba(0, 255, 136, 0.2);
}
.ai-chat-button:hover::before {
  opacity: 1;
}
.ai-chat-button:hover ion-icon {
  filter: drop-shadow(0 0 12px rgb(0, 255, 136));
}
.ai-chat-button.chat-open {
  display: none;
}

@keyframes terminalPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3), inset 0 0 10px rgba(0, 255, 136, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.7), 0 0 60px rgba(0, 255, 136, 0.5), inset 0 0 15px rgba(0, 255, 136, 0.2);
  }
}
.terminal-window {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 650px;
  height: 550px;
  background: #0C0C0C;
  border: 2px solid #00ff88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 255, 136, 0.05);
  z-index: 10000;
  display: none;
  flex-direction: column;
  animation: terminalBoot 0.5s ease-out;
  border-radius: 2px;
  font-family: "JetBrains Mono", "Courier New", monospace;
}
.terminal-window.active {
  display: flex;
}
@media (max-width: 768px) {
  .terminal-window {
    width: calc(100vw - 2rem);
    height: calc(100vh - 4rem);
    bottom: 1rem;
    right: 1rem;
  }
}
@media (max-width: 480px) {
  .terminal-window {
    bottom: 0.5rem;
    right: 0.5rem;
    width: calc(100vw - 1rem);
    height: calc(100vh - 1rem);
  }
}

@keyframes terminalBoot {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.terminal-header {
  background: #1a1a1a;
  padding: 0.4rem 0.75rem;
  border-bottom: 1px solid #00ff88;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 2px 10px rgba(0, 255, 136, 0.2);
}
.terminal-header .header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-header .header-left .terminal-icon {
  font-size: 0.875rem;
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}
.terminal-header .header-left .header-title {
  font-size: 0.875rem;
  color: #f0f0f0;
  letter-spacing: 0.5px;
}
.terminal-header .header-controls {
  display: flex;
  gap: 0.5rem;
}
.terminal-header .header-controls .control-btn {
  width: 28px;
  height: 20px;
  background: #1a1a1a;
  border: 1px solid #808080;
  color: #f0f0f0;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
  padding: 0;
  line-height: 1;
}
.terminal-header .header-controls .control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f0f0f0;
}
.terminal-header .header-controls .control-btn.close:hover {
  background: #ff5555;
  border-color: #ff5555;
  color: white;
}

.terminal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  background: #0C0C0C;
  color: #00ff88;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  position: relative;
}
.terminal-body .scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 51%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 1;
  animation: scanlineMove 8s linear infinite;
}
@keyframes scanlineMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}
.terminal-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 255, 136, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
}
.terminal-body > * {
  position: relative;
  z-index: 2;
}
.terminal-body::-webkit-scrollbar {
  width: 10px;
}
.terminal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}
.terminal-body::-webkit-scrollbar-thumb {
  background: #00ff88;
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}
.terminal-body::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.boot-sequence .boot-line {
  margin-bottom: 0.25rem;
  color: #00ff88;
  animation: typeLine 0.05s steps(1);
}
.boot-sequence .boot-line.terminal-prompt {
  margin-top: 0.5rem;
}
.boot-sequence .boot-line.terminal-prompt .prompt-path {
  color: #d4af37;
  font-weight: 600;
}
.boot-sequence .boot-line.terminal-prompt .prompt-command {
  color: #f0f0f0;
  margin-left: 0.5rem;
}
.boot-sequence .boot-line.success-msg {
  color: #00ff88;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}
.boot-sequence .boot-line.info-msg {
  color: #0ea5e9;
  font-weight: 300;
}
.boot-sequence .boot-line.welcome-text {
  color: #f0f0f0;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.boot-sequence .boot-line.cmd-list {
  color: #00ff88;
  padding-left: 1rem;
  font-family: "JetBrains Mono", monospace;
}
.boot-sequence .boot-line.hint-text {
  color: #808080;
  font-style: italic;
  font-size: 0.8rem;
}

@keyframes typeLine {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.message {
  margin-bottom: 1rem;
  padding: 0;
  max-width: 100%;
  word-wrap: break-word;
  color: #00ff88;
}
.message.user-message .message-line {
  color: #f0f0f0;
}
.message.user-message .message-line .prompt-path {
  color: #d4af37;
}
.message.ai-message .message-line {
  color: #0ea5e9;
}
.message .message-line {
  margin-bottom: 0.15rem;
}

.terminal-input {
  border-top: 1px solid rgba(0, 255, 136, 0.3);
  padding: 0.75rem;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 -2px 10px rgba(0, 255, 136, 0.1);
}
.terminal-input .input-prompt {
  color: #d4af37;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}
.terminal-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #f0f0f0;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.875rem;
  outline: none;
  letter-spacing: 0.3px;
  caret-color: #00ff88;
  caret-shape: block;
}
.terminal-input input::-moz-placeholder {
  color: #808080;
  opacity: 0.6;
}
.terminal-input input::placeholder {
  color: #808080;
  opacity: 0.6;
}
.terminal-input input::-moz-selection {
  background: rgba(0, 255, 136, 0.3);
  color: #f0f0f0;
}
.terminal-input input::selection {
  background: rgba(0, 255, 136, 0.3);
  color: #f0f0f0;
}
.terminal-input button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #00ff88;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.terminal-input button ion-icon {
  font-size: 18px;
  color: #00ff88;
}
.terminal-input button:hover {
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.terminal-input button:hover ion-icon {
  color: #d4af37;
}
.terminal-input button:active {
  transform: scale(0.95);
}
.terminal-input button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0ea5e9;
  margin-bottom: 1rem;
}
.typing-indicator .typing-text {
  font-size: 0.875rem;
}
.typing-indicator .typing-dots {
  display: flex;
  gap: 0.25rem;
}
.typing-indicator .typing-dots span {
  width: 4px;
  height: 4px;
  background: #00ff88;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}
.typing-indicator .typing-dots span:nth-child(1) {
  animation-delay: 0s;
}
.typing-indicator .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.5);
    opacity: 1;
  }
}
@keyframes cursorBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.cursor-blink {
  display: inline-block;
  width: 8px;
  height: 1rem;
  background: #00ff88;
  margin-left: 2px;
  animation: cursorBlink 1s infinite;
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.8);
}

@media only screen and (max-width: 768px) {
  .ai-chat-button {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }
  .ai-chat-button ion-icon {
    font-size: 28px;
  }
  .ai-chat-button::before {
    font-size: 0.7rem;
  }
  .terminal-header {
    padding: 0.35rem 0.5rem;
  }
  .terminal-header .header-left .terminal-icon,
  .terminal-header .header-left .header-title {
    font-size: 0.75rem;
  }
  .terminal-header .header-controls .control-btn {
    width: 24px;
    height: 18px;
    font-size: 0.875rem;
  }
  .terminal-body {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
  .terminal-input {
    padding: 0.625rem;
  }
  .terminal-input .input-prompt {
    font-size: 0.8rem;
  }
  .terminal-input input {
    font-size: 0.8rem;
  }
  .terminal-input button {
    width: 28px;
    height: 28px;
  }
  .terminal-input button ion-icon {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .terminal-header .header-left .header-title {
    display: none;
  }
  .boot-sequence .boot-line {
    font-size: 0.75rem;
  }
  .boot-sequence .boot-line.welcome-text {
    font-size: 0.875rem;
  }
}
[data-exploded=true] .intro {
  animation: fadeOutIntro 1.6s ease-out forwards;
}
[data-exploded=true] .intro-text {
  animation: fadeOutBlur 0.3s ease-out forwards;
}
[data-exploded=true] .keypad {
  translate: calc(-50% - 1rem) 0;
  transition-delay: 0s, 0.26s;
}
@media (max-width: 768px) {
  [data-exploded=true] .keypad {
    translate: 0 calc(50% + 1rem);
  }
}
[data-exploded=true] .keypad__base {
  --depth: 2.5;
  translate: 0 calc(var(--depth) * 10vh);
  transition-property: translate;
  transition-duration: 0.52s;
  transition-delay: 0.52s;
  transition-timing-function: ease-out;
  animation: explodeFadeOut 1.4s ease-out forwards;
}
[data-exploded=true] .keypad__single {
  --depth: -1;
}
[data-exploded=true] .keypad__single--left {
  --depth: -2;
}
[data-exploded=true] .keypad__double {
  --depth: 0;
}
[data-exploded=true] .key {
  translate: 0 calc(var(--depth) * 10vh);
  transition-property: translate;
  transition-duration: 0.52s;
  transition-delay: 0.52s;
  transition-timing-function: ease-out;
  animation: explodeFadeOut 1.4s ease-out forwards;
}
[data-exploded=true] .key::after {
  opacity: 1;
  transition-delay: 0.52s;
}

.intro {
  flex-direction: row;
  gap: 4rem;
  flex-wrap: nowrap;
}
.intro .intro-text {
  flex: 0 1 auto;
  max-width: 50ch;
  transition-property: opacity, filter;
  transition-duration: 0.26s;
  transition-delay: 0.26s;
  transition-timing-function: ease-out;
}
.intro .intro-text h2 {
  letter-spacing: -0.05rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .intro {
    flex-direction: column;
    gap: 2rem;
  }
  .intro .keypad {
    order: 1;
  }
  .intro .intro-text {
    order: 2;
  }
}

:root {
  --travel: 20;
}

.keypad {
  position: relative;
  aspect-ratio: 400/310;
  display: flex;
  place-items: center;
  width: clamp(280px, 35vw, 400px);
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
  transition-property: translate, transform;
  transition-duration: 0.26s;
  transition-delay: 0.26s, 0.52s;
  transition-timing-function: ease-out;
  transform-style: preserve-3d;
  opacity: 0;
}
.keypad.keypad-enter {
  animation: keypadSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.keypad:not(.keypad-enter) .key {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
}
.keypad .key {
  transform-style: preserve-3d;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition-property: translate;
  transition-duration: 0.26s;
  transition-timing-function: ease-out;
}
.keypad-enter .keypad .key {
  animation: keyPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.keypad-enter .keypad .key.keypad__single--left {
  animation-delay: 0.2s;
}
.keypad-enter .keypad .key.keypad__single:not(.keypad__single--left) {
  animation-delay: 0.3s;
}
.keypad-enter .keypad .key.keypad__double {
  animation-delay: 0.4s;
}
.keypad .key[data-pressed=true] .key__content, .keypad .key:active .key__content {
  translate: 0 calc(var(--travel) * 1%);
}
.keypad .key::after {
  z-index: -1;
  content: "";
  position: absolute;
  opacity: 0;
  inset: 0;
  transition-property: opacity;
  transition-duration: 0.26s;
  transition-timing-function: ease-out;
  background: repeating-linear-gradient(-45deg, transparent 0 5px, hsl(220, 100%, 70%) 5px 6px);
}
.keypad .key__content {
  width: 100%;
  display: inline-block;
  height: 100%;
  transition: translate 0.12s ease-out;
  container-type: inline-size;
}
.keypad .key__text {
  height: 46%;
  width: 86%;
  position: absolute;
  font-size: 12cqi;
  z-index: 21;
  top: 5%;
  left: 0;
  mix-blend-mode: normal;
  color: hsl(0, 0%, 94%);
  translate: 8% 10%;
  transform: rotateX(36deg) rotateY(45deg) rotateX(-90deg) rotate(0deg);
  text-align: left;
  padding: 1ch;
}
.keypad .keypad__single {
  position: absolute;
  width: 40.5%;
  left: 54%;
  bottom: 36%;
  height: 46%;
  clip-path: polygon(0 0, 54% 0, 89% 24%, 100% 70%, 54% 100%, 46% 100%, 0 69%, 12% 23%, 47% 0%);
  -webkit-mask: url(https://assets.codepen.io/605876/keypad-single.png?format=auto&quality=86) 50% 50%/100% 100%;
          mask: url(https://assets.codepen.io/605876/keypad-single.png?format=auto&quality=86) 50% 50%/100% 100%;
}
.keypad .keypad__single.keypad__single--left {
  left: 29.3%;
  bottom: 54.2%;
}
.keypad .keypad__single .key__text {
  width: 52%;
  height: 62%;
  translate: 45% -16%;
  font-size: 18cqi;
}
.keypad .keypad__single img {
  top: 0;
  opacity: 1;
  width: 96%;
  position: absolute;
  left: 50%;
  translate: -50% 1%;
}
.keypad .key__mask {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.keypad .keypad__double {
  position: absolute;
  background: transparent;
  width: 64%;
  height: 65%;
  left: 6%;
  bottom: 17.85%;
  clip-path: polygon(34% 0, 93% 44%, 101% 78%, 71% 100%, 66% 100%, 0 52%, 0 44%, 7% 17%, 30% 0);
  -webkit-mask: url(https://assets.codepen.io/605876/keypad-double.png?format=auto&quality=86) 50% 50%/100% 100%;
          mask: url(https://assets.codepen.io/605876/keypad-double.png?format=auto&quality=86) 50% 50%/100% 100%;
}
.keypad .keypad__double img {
  top: 0;
  opacity: 1;
  width: 99%;
  position: absolute;
  left: 50%;
  translate: -50% 1%;
}
.keypad .key img {
  filter: hue-rotate(calc(var(--hue, 0) * 1deg)) saturate(var(--saturate, 1)) brightness(var(--brightness, 1));
}
.keypad:not(.keypad-enter) .keypad__base {
  opacity: 0;
  transform: translateY(50px);
}
.keypad .keypad__base {
  position: absolute;
  bottom: 0;
  width: 100%;
  transition-property: translate;
  transition-duration: 0.26s;
  transition-timing-function: ease-out;
}
.keypad-enter .keypad .keypad__base {
  animation: baseSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.1s;
}
.keypad img {
  transition: translate 0.12s ease-out;
  width: 100%;
}

@keyframes keypadSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(20deg) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) rotateX(-5deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}
@keyframes baseSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  70% {
    opacity: 1;
    transform: translateY(-5px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes keyPopIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.7) rotateZ(-10deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.05) rotateZ(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateZ(0deg);
  }
}
@keyframes explodeFadeOut {
  0% {
    opacity: 1;
  }
  71% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutBlur {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
    filter: blur(4px);
  }
}
@keyframes fadeOutIntro {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tubes-background {
  position: absolute;
  bottom: -12rem;
  right: 2rem;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--width);
  will-change: transform;
  --size: min(20vw, 20vh);
  --width: calc(var(--size) / 40);
  --dist: calc(var(--width) * 9.8);
  --count: 32;
  --bg: url("https://mir-s3-cdn-cf.behance.net/project_modules/max_1200/5eeea355389655.59822ff824b72.gif");
}
@media (max-width: 1024px) {
  .tubes-background {
    display: none;
  }
}

.tube {
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: speen 8s infinite linear;
  width: calc(var(--dist) * 2);
  height: var(--size);
  will-change: transform;
}
.tube:nth-child(1) {
  animation-delay: -7.5s;
}
.tube:nth-child(2) {
  animation-delay: -5s;
}
.tube:nth-child(3) {
  animation-delay: -2.5s;
}

.strip {
  transform-style: preserve-3d;
  background-color: white;
  height: var(--size);
  width: var(--width);
  position: absolute;
  background-image: var(--bg);
  background-size: calc(var(--width) * var(--count)) auto;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  will-change: transform;
}
.strip:nth-child(1) {
  transform: rotateY(calc(1turn * 1 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -0) center;
}
.strip:nth-child(2) {
  transform: rotateY(calc(1turn * 2 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -1) center;
}
.strip:nth-child(3) {
  transform: rotateY(calc(1turn * 3 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -2) center;
}
.strip:nth-child(4) {
  transform: rotateY(calc(1turn * 4 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -3) center;
}
.strip:nth-child(5) {
  transform: rotateY(calc(1turn * 5 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -4) center;
}
.strip:nth-child(6) {
  transform: rotateY(calc(1turn * 6 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -5) center;
}
.strip:nth-child(7) {
  transform: rotateY(calc(1turn * 7 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -6) center;
}
.strip:nth-child(8) {
  transform: rotateY(calc(1turn * 8 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -7) center;
}
.strip:nth-child(9) {
  transform: rotateY(calc(1turn * 9 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -8) center;
}
.strip:nth-child(10) {
  transform: rotateY(calc(1turn * 10 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -9) center;
}
.strip:nth-child(11) {
  transform: rotateY(calc(1turn * 11 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -10) center;
}
.strip:nth-child(12) {
  transform: rotateY(calc(1turn * 12 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -11) center;
}
.strip:nth-child(13) {
  transform: rotateY(calc(1turn * 13 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -12) center;
}
.strip:nth-child(14) {
  transform: rotateY(calc(1turn * 14 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -13) center;
}
.strip:nth-child(15) {
  transform: rotateY(calc(1turn * 15 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -14) center;
}
.strip:nth-child(16) {
  transform: rotateY(calc(1turn * 16 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -15) center;
}
.strip:nth-child(17) {
  transform: rotateY(calc(1turn * 17 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -16) center;
}
.strip:nth-child(18) {
  transform: rotateY(calc(1turn * 18 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -17) center;
}
.strip:nth-child(19) {
  transform: rotateY(calc(1turn * 19 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -18) center;
}
.strip:nth-child(20) {
  transform: rotateY(calc(1turn * 20 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -19) center;
}
.strip:nth-child(21) {
  transform: rotateY(calc(1turn * 21 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -20) center;
}
.strip:nth-child(22) {
  transform: rotateY(calc(1turn * 22 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -21) center;
}
.strip:nth-child(23) {
  transform: rotateY(calc(1turn * 23 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -22) center;
}
.strip:nth-child(24) {
  transform: rotateY(calc(1turn * 24 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -23) center;
}
.strip:nth-child(25) {
  transform: rotateY(calc(1turn * 25 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -24) center;
}
.strip:nth-child(26) {
  transform: rotateY(calc(1turn * 26 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -25) center;
}
.strip:nth-child(27) {
  transform: rotateY(calc(1turn * 27 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -26) center;
}
.strip:nth-child(28) {
  transform: rotateY(calc(1turn * 28 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -27) center;
}
.strip:nth-child(29) {
  transform: rotateY(calc(1turn * 29 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -28) center;
}
.strip:nth-child(30) {
  transform: rotateY(calc(1turn * 30 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -29) center;
}
.strip:nth-child(31) {
  transform: rotateY(calc(1turn * 31 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -30) center;
}
.strip:nth-child(32) {
  transform: rotateY(calc(1turn * 32 / var(--count))) translateZ(var(--dist));
  background-position: calc(var(--width) * -31) center;
}

@keyframes speen {
  0% {
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    transform: perspective(400px) rotateY(360deg);
  }
}
@font-face {
  font-family: "the_historia_demoregular";
  src: url("../fonts/fontsfree-net-thehistoriademo-webfont.woff2") format("woff2"), url("../fonts/fontsfree-net-thehistoriademo-webfont.woff") format("woff");
}
@media screen and (max-width: 900px) {
  .about {
    padding: 2rem 2rem !important;
  }
  header .landing-text h1 {
    font-size: 7rem !important;
  }
  header .landing-text p {
    font-size: 0.85rem;
    padding: 0 2rem;
  }
  .services .expertise-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 32px;
    padding: 0 1.5rem;
  }
  .project {
    padding: 4rem 1.5rem;
  }
  .project-item-container {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    grid-gap: 3rem;
  }
  .dock {
    bottom: 1rem;
  }
  .dock .dock-container {
    padding: 0.5rem;
    gap: 0.8rem;
  }
  .menu-bar {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  header .landing-text h1 {
    font-size: 5rem !important;
    padding: 2rem !important;
  }
  header .landing-text p {
    font-size: 0.8rem;
    padding: 0 1.5rem;
  }
  header .nav-list {
    margin-top: 2.5rem;
    flex-direction: column;
  }
  header .nav-list li {
    margin: 1rem 0;
  }
  header .nav-list li .nav-link {
    font-size: 1.3rem;
  }
  .services {
    margin: 4rem 0 !important;
    padding: 3rem 0 !important;
  }
  .services .services-content {
    padding: 0 1rem;
  }
  .services .services-content .services-heading {
    margin-bottom: 4rem;
  }
  .services .expertise-container {
    grid-template-columns: 1fr;
    grid-gap: 24px;
    padding: 0 1rem;
  }
  .services .expertise-card {
    padding: 48px 20px 20px 20px;
    min-height: auto;
  }
  .services .expertise-card .icon {
    padding: 10px;
  }
  .services .expertise-card .icon svg {
    width: 28px;
    height: 28px;
  }
  .services .expertise-card h4 {
    font-size: 1.1rem;
    margin: 12px 0 6px 0;
  }
  .services .expertise-card p {
    font-size: 0.9rem;
  }
  .project {
    padding: 4rem 1rem;
  }
  .project-item-container {
    grid-template-columns: 1fr;
    grid-gap: 2.5rem;
    margin: 4rem auto 0 auto;
  }
  .project-box {
    height: auto;
    min-height: 16rem;
    padding: 1.5rem;
    gap: 2rem;
  }
  .project-box__content h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8rem;
  }
  .project-box__content h5 {
    font-size: 0.9rem;
  }
  .project .projects-switch-container {
    margin: 1.5rem 0 2rem 0;
  }
  .project h2 {
    font-size: 1.8rem !important;
  }
  .portfolio {
    margin-top: 12rem;
  }
  .about-heading h2,
  .services-heading h2,
  .contact-title h2 {
    font-size: 1.5rem !important;
  }
  .dock {
    display: none;
  }
  .menu-bar {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  .menu-bar .left .menus {
    margin-right: 0.8rem;
  }
  .menu-bar .right {
    gap: 0.5rem;
  }
  .more-about-content {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .more-about-img, .more-about-text {
    width: 100% !important;
    margin: 2rem auto;
  }
  .cursor-effect {
    display: none;
  }
  .about .container {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .about .container .profile-img {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  header .landing-text h1 {
    font-size: 3.5rem !important;
    padding: 1.5rem !important;
    letter-spacing: 2px;
  }
  header .landing-text p {
    font-size: 0.75rem;
    padding: 0 1rem;
    line-height: 1.4;
  }
  .nav-list {
    margin-top: -1rem !important;
  }
  .nav-list .nav-link {
    font-size: 3.5rem !important;
  }
  .menu-toggler {
    top: 2.2rem;
    right: 1rem;
    width: 1.5rem;
    height: 1rem;
  }
  .menu-bar {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }
  .menu-bar .left .menus {
    margin-right: 0.5rem;
  }
  .menu-bar .left .menus:nth-child(3), .menu-bar .left .menus:nth-child(4) {
    display: none;
  }
  .about {
    margin-top: 9rem !important;
  }
  .about .container {
    flex-direction: column;
  }
  .about .container .profile-img {
    margin: 0 2rem 4rem 1rem;
  }
  .logo {
    top: 2.2rem;
    left: 1rem;
    width: 4rem !important;
    padding: 0.6rem 0.3rem !important;
  }
  .logo h2 {
    font-size: 1.2rem !important;
  }
  .services {
    margin: 3rem 0 !important;
    padding: 2rem 0 !important;
  }
  .services .services-content {
    padding: 0 0.75rem;
  }
  .services .services-content .services-heading {
    margin-bottom: 3rem;
  }
  .services .services-content .services-heading h5 {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .services .services-content .services-heading h2 {
    font-size: 1.5rem !important;
  }
  .services .expertise-container {
    grid-gap: 20px;
    padding: 0 0.75rem;
  }
  .services .expertise-card {
    padding: 40px 16px 16px 16px;
  }
  .services .expertise-card .icon {
    padding: 8px;
  }
  .services .expertise-card .icon svg {
    width: 24px;
    height: 24px;
  }
  .services .expertise-card h4 {
    font-size: 1rem;
    margin: 10px 0 6px 0;
  }
  .services .expertise-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .project {
    padding: 3rem 0.75rem !important;
  }
  .project h2 {
    font-size: 1.5rem !important;
  }
  .project h5 {
    font-size: 0.7rem !important;
    letter-spacing: 2px;
  }
  .project-item-container {
    grid-gap: 2rem;
    margin: 3rem auto 0 auto;
  }
  .project-box {
    min-height: 14rem;
    padding: 1.25rem;
  }
  .project-box__content h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6rem;
  }
  .project-box__content h5 {
    font-size: 0.8rem;
    letter-spacing: 0;
  }
  .project-box__link a ion-icon {
    width: 30px;
    height: 22px;
  }
  .project .projects-switch-container {
    margin: 1rem 0 2rem 0;
  }
  .project .projects-switch {
    font-size: 14px;
  }
  .contact .container {
    padding: 0px 20px !important;
  }
  .contact .container form {
    width: 100% !important;
    min-width: 0 !important;
  }
  .contact .container form .input-row {
    flex-direction: column;
  }
  .contact .container form .input-row .side {
    width: 100% !important;
    margin-bottom: 50px;
  }
  .contact .container form .textarea {
    margin-top: 0 !important;
  }
  .sub {
    font-size: 0.9rem !important;
    margin: 0px 0 60px !important;
  }
  .about-content p {
    margin-top: 0rem !important;
    font-size: 0.8rem !important;
  }
  .contact-title {
    padding: 6rem 2rem 2rem 6rem !important;
  }
  .effect-3 {
    top: 12rem !important;
    left: 5rem !important;
  }
  .inner {
    top: 1rem !important;
    max-width: 220px !important;
    padding: 1rem;
  }
  .inner span {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  header .landing-text {
    flex-direction: column;
  }
  header .landing-text h1 {
    font-size: 2.8rem !important;
    padding: 1rem !important;
    letter-spacing: 1px;
  }
  header .landing-text p {
    font-size: 0.7rem;
    padding: 0 0.75rem;
  }
  .profile-img {
    max-width: 400px;
  }
  .services .services-content .services-heading h2 {
    font-size: 1.2rem !important;
  }
  .services .services-content .services-heading h5 {
    font-size: 0.65rem;
  }
  .services .expertise-card {
    padding: 32px 12px 12px 12px;
  }
  .services .expertise-card .icon {
    padding: 6px;
  }
  .services .expertise-card .icon svg {
    width: 20px;
    height: 20px;
  }
  .services .expertise-card h4 {
    font-size: 0.95rem;
  }
  .services .expertise-card p {
    font-size: 0.8rem;
  }
  .project {
    padding: 2rem 0.5rem !important;
  }
  .project h2 {
    font-size: 1.2rem !important;
  }
  .project h5 {
    font-size: 0.65rem !important;
  }
  .project-box {
    padding: 1rem;
    min-height: 12rem;
  }
  .project-box__content h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.4rem;
  }
  .project-box__content h5 {
    font-size: 0.75rem;
  }
  .services-content p,
  .about-content {
    font-size: 0.6rem;
  }
  .menu-bar {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }
}
@media screen and (max-width: 300px) {
  header .landing-text h1 {
    font-size: 2.5rem !important;
  }
  .services .services-heading h2 {
    font-size: 1rem !important;
  }
  .services .expertise-card h4 {
    font-size: 0.9rem;
  }
  .services .expertise-card p {
    font-size: 0.75rem;
  }
  .project h2 {
    font-size: 1rem !important;
  }
  .project-box {
    padding: 1rem !important;
  }
  .project-box__content h3 {
    font-size: 0.95rem;
  }
  .project-box__content h5 {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 360px) {
  .service-item p {
    font-size: 0.67rem !important;
  }
}
.about {
  padding: 120px 40px;
  background: var(--bg-black);
  position: relative;
}
.about .container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about .profile-img {
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: 500px;
}
.about .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.about .profile-img::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid var(--neon-green);
  border-radius: 12px;
  opacity: 0.5;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.about .profile-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, transparent 60%);
  border-radius: 12px;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.about .profile-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.about .profile-img:hover::before {
  opacity: 1;
  box-shadow: 0 0 20px var(--green-glow);
}
.about .profile-img:hover::after {
  opacity: 0.3;
}
.about .about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about .about-content .about-heading h2 {
  font-family: "Space Mono", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 16px 0;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.about .about-content .about-heading h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--green-glow);
}
.about .about-content p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}
.about .about-content p br {
  content: "";
  display: block;
  margin: 12px 0;
}
.about .about-content p a {
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
.about .about-content p a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rich-gold);
  transition: width 0.3s ease;
}
.about .about-content p a:hover {
  color: var(--rich-gold);
}
.about .about-content p a:hover::after {
  width: 100%;
}
.about .about-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.about .about-cta span {
  color: var(--text-dark);
  font-size: 1.2rem;
}
.about .about-cta a {
  padding: 12px 28px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about .about-cta .skills-cta {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--rich-gold) 100%);
  color: var(--bg-black);
  border: none;
}
.about .about-cta .skills-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}
.about .about-cta .exp-cta {
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
}
.about .about-cta .exp-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--neon-green);
  transition: left 0.3s ease;
  z-index: -1;
}
.about .about-cta .exp-cta:hover {
  color: var(--bg-black);
}
.about .about-cta .exp-cta:hover::before {
  left: 0;
}
@media (max-width: 768px) {
  .about .about-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .about .about-cta span {
    display: none;
  }
  .about .about-cta a {
    text-align: center;
  }
}

.contact {
  background: var(--bg);
  max-width: 1480px;
  margin: 6rem auto 0 auto;
  padding-top: 4rem;
}
.contact-title {
  display: flex;
  flex-direction: column;
  padding: 6rem 6rem 2rem 6rem;
  text-align: right;
}
.contact-title h5 {
  text-transform: uppercase;
  color: var(--whiteLight);
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.contact-title h2 {
  font-size: 2.2rem;
  text-transform: capitalize;
  letter-spacing: -1px;
}
.contact .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 0;
}
.contact .container .sub {
  text-align: center;
  line-height: 1.3;
  font-size: 1.3rem;
  color: var(--whiteLight);
  margin: 50px 0 60px;
}
.contact .container form {
  width: 70%;
  min-width: 450px;
}
.contact .container form .input-row {
  display: flex;
  justify-content: space-between;
}
.contact .container form .input-row .side {
  width: 45%;
}
.contact .container form label {
  margin-top: 20px;
  display: block;
  text-transform: capitalize;
  color: #868f97;
  font-size: 12px;
  margin-bottom: 5px;
}
.contact .container form input,
.contact .container form textarea {
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--white);
  background: transparent;
  outline: none;
  box-shadow: none;
  text-align: left;
  font-size: 14.5px;
  width: 100%;
  color: var(--white);
  padding: 0.6em 0.6em 0.6em 0;
}
.contact .container form .textarea {
  margin-top: 99px;
}
.contact .container form .textarea textarea {
  resize: none;
  line-height: 1.4;
}
.contact .container form button {
  outline: none;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--white);
  padding: 15px 30px;
  background: transparent;
  border: 1px solid var(--mainColor);
  display: block;
  margin: 80px auto 0;
  position: relative;
  color: var(--mainColor);
}
.contact .container form button:hover {
  color: var(--white);
  background: var(--mainColor);
  transition: 0.3s all ease;
}

header {
  width: 100%;
  min-height: 100vh;
  background: var(--bg-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 40px;
  z-index: 10;
}
header .hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  z-index: 10;
  position: relative;
}
@media (max-width: 1024px) {
  header .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
header .hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
header .hero-left .badge {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: #a855f7;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  header .hero-left .badge {
    margin: 0 auto;
  }
}
header .hero-left .hero-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  letter-spacing: -1px;
}
header .hero-left .hero-description {
  margin: 0;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}
header .hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  header .hero-right {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.5) 50%, var(--bg-black) 100%);
  pointer-events: none;
  z-index: 5;
}

.logo img {
  position: fixed;
  top: 3rem;
  left: 2rem;
  width: 4rem;
  background-color: rgba(var(--bg), 0.75);
  padding: 0.3rem;
  z-index: 101;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.project {
  padding: 120px 40px;
  background: var(--bg-black);
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.project .projects-header {
  text-align: center;
  margin-bottom: 60px;
}
.project .projects-header .projects-title h5 {
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.project .projects-header .projects-title h2 {
  font-family: "Space Mono", monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 2px;
  margin: 0;
}
.project .project-item-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .project .project-item-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.project .project-box {
  position: relative;
  background: var(--bg-dark);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.project .project-box::before {
  content: attr(data-number);
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Space Mono", monospace;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-dark);
  opacity: 0.3;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 1;
}
.project .project-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--green-glow);
  transition: height 0.3s ease;
  z-index: 2;
}
.project .project-box .project-box__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project .project-box .project-box__content h3 {
  font-family: "Space Mono", monospace;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  transition: color 0.3s ease;
}
.project .project-box .project-box__content h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 0;
  word-spacing: 8px;
}
.project .project-box .project-box__link {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  opacity: 0;
  transform: translateX(10px) rotate(0deg);
  transition: all 0.3s ease;
}
.project .project-box .project-box__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--neon-green);
  border-radius: 50%;
  color: var(--neon-green);
  transition: all 0.3s ease;
}
.project .project-box .project-box__link a ion-icon {
  font-size: 20px;
}
.project .project-box .project-box__link a:hover {
  background: var(--neon-green);
  color: var(--bg-black);
  transform: scale(1.1);
}
.project .project-box:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2), 0 0 20px rgba(0, 255, 136, 0.1);
}
.project .project-box:hover::before {
  color: var(--neon-green);
  opacity: 0.6;
}
.project .project-box:hover::after {
  height: 100%;
}
.project .project-box:hover .project-box__content h3 {
  color: var(--neon-green);
}
.project .project-box:hover .project-box__link {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}
.project .project-box::after {
  animation: none;
}

.tech-tag {
  display: inline-block;
  padding: 4px 12px;
  background: transparent;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  color: var(--text-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.tech-tag:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.05);
}

.services {
  margin: 6rem 0;
  background: transparent;
  padding: 4rem 0;
  position: relative;
  overflow: visible;
  z-index: 2;
}
.services::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: calc(100% + 20rem);
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 25%, var(--bg) 75%, transparent 100%);
  z-index: -1;
}
.services .services-content {
  max-width: 1480px;
  margin: auto;
  padding: 0 2rem;
}
.services .services-content .services-heading {
  margin-bottom: 6rem;
}
.services .services-content .services-heading h5 {
  text-transform: uppercase;
  color: var(--whiteLight) !important;
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.services .services-content .services-heading h2 {
  font-size: 2.2rem;
  text-transform: capitalize;
  letter-spacing: -1px;
  font-weight: 600;
  color: var(--white);
}
.services .expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 48px;
  margin: 0 auto;
  max-width: 1480px;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.services .expertise-card {
  background-color: var(--bg);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 72px 24px 24px 24px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.25s;
  min-height: 280px;
}
.services .expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.015);
}
.services .expertise-card .icon {
  z-index: 2;
  position: relative;
  display: table;
  padding: 12px;
}
.services .expertise-card .icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: background-color 0.25s, border-color 0.25s;
}
.services .expertise-card .icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  transform: translateZ(0);
  color: #D4D4D8;
  transition: color 0.25s;
}
.services .expertise-card h4 {
  z-index: 2;
  position: relative;
  margin: 16px 0 8px 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--white);
}
.services .expertise-card p {
  z-index: 2;
  position: relative;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #a0a0a0 !important;
  opacity: 1 !important;
  display: block !important;
}
.services .expertise-card .shine {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.services .expertise-card .shine:before {
  content: "";
  width: 150%;
  padding-bottom: 150%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 55%;
  filter: blur(35px);
  opacity: 0.15;
  transform: translateX(-50%);
  background-image: conic-gradient(from 205deg at 50% 50%, rgba(0, 255, 136, 0) 0deg, var(--neon-green) 25deg, rgba(0, 255, 136, 0.18) 295deg, rgba(0, 255, 136, 0) 360deg);
}
.services .expertise-card .background {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}
.services .expertise-card .background .tiles {
  opacity: 0;
  transition: opacity 0.25s;
}
.services .expertise-card .background .tiles .tile {
  position: absolute;
  background-color: rgba(0, 255, 136, 0.08);
  animation-duration: 8s;
  animation-iteration-count: infinite;
  opacity: 0;
}
.services .expertise-card .background .tiles .tile.tile-4, .services .expertise-card .background .tiles .tile.tile-6, .services .expertise-card .background .tiles .tile.tile-10 {
  animation-delay: -2s;
}
.services .expertise-card .background .tiles .tile.tile-3, .services .expertise-card .background .tiles .tile.tile-5, .services .expertise-card .background .tiles .tile.tile-8 {
  animation-delay: -4s;
}
.services .expertise-card .background .tiles .tile.tile-2, .services .expertise-card .background .tiles .tile.tile-9 {
  animation-delay: -6s;
}
.services .expertise-card .background .tiles .tile.tile-1 {
  top: 0;
  left: 0;
  height: 10%;
  width: 22.5%;
}
.services .expertise-card .background .tiles .tile.tile-2 {
  top: 0;
  left: 22.5%;
  height: 10%;
  width: 27.5%;
}
.services .expertise-card .background .tiles .tile.tile-3 {
  top: 0;
  left: 50%;
  height: 10%;
  width: 27.5%;
}
.services .expertise-card .background .tiles .tile.tile-4 {
  top: 0;
  left: 77.5%;
  height: 10%;
  width: 22.5%;
}
.services .expertise-card .background .tiles .tile.tile-5 {
  top: 10%;
  left: 0;
  height: 22.5%;
  width: 22.5%;
}
.services .expertise-card .background .tiles .tile.tile-6 {
  top: 10%;
  left: 22.5%;
  height: 22.5%;
  width: 27.5%;
}
.services .expertise-card .background .tiles .tile.tile-7 {
  top: 10%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}
.services .expertise-card .background .tiles .tile.tile-8 {
  top: 10%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
}
.services .expertise-card .background .tiles .tile.tile-9 {
  top: 32.5%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}
.services .expertise-card .background .tiles .tile.tile-10 {
  top: 32.5%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
}
@keyframes tile {
  0%, 12.5%, 100% {
    opacity: 1;
  }
  25%, 82.5% {
    opacity: 0;
  }
}
.services .expertise-card .background .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.services .expertise-card .background .line:before, .services .expertise-card .background .line:after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.35s;
}
.services .expertise-card .background .line:before {
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.services .expertise-card .background .line:after {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: 50% 0;
  transform: scaleY(0);
}
.services .expertise-card .background .line.line-1:before {
  top: 10%;
}
.services .expertise-card .background .line.line-1:after {
  left: 22.5%;
}
.services .expertise-card .background .line.line-1:before, .services .expertise-card .background .line.line-1:after {
  transition-delay: 0.3s;
}
.services .expertise-card .background .line.line-2:before {
  top: 32.5%;
}
.services .expertise-card .background .line.line-2:after {
  left: 50%;
}
.services .expertise-card .background .line.line-2:before, .services .expertise-card .background .line.line-2:after {
  transition-delay: 0.15s;
}
.services .expertise-card .background .line.line-3:before {
  top: 55%;
}
.services .expertise-card .background .line.line-3:after {
  right: 22.5%;
}
.services .expertise-card:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04), 0px 15px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.services .expertise-card:hover .icon::after {
  background-color: rgba(0, 255, 136, 0.15);
  border-color: var(--neon-green);
}
.services .expertise-card:hover .icon svg {
  color: var(--neon-green);
}
.services .expertise-card:hover .shine {
  opacity: 1;
  transition-duration: 0.5s;
  transition-delay: 0s;
}
.services .expertise-card:hover .background .tiles {
  opacity: 1;
  transition-delay: 0.25s;
}
.services .expertise-card:hover .background .tiles .tile {
  animation-name: tile;
}
.services .expertise-card:hover .background .line {
  opacity: 1;
  transition-duration: 0.15s;
}
.services .expertise-card:hover .background .line:before {
  transform: scaleX(1);
}
.services .expertise-card:hover .background .line:after {
  transform: scaleY(1);
}
.services .expertise-card:hover .background .line.line-1:before, .services .expertise-card:hover .background .line.line-1:after {
  transition-delay: 0s;
}
.services .expertise-card:hover .background .line.line-2:before, .services .expertise-card:hover .background .line.line-2:after {
  transition-delay: 0.15s;
}
.services .expertise-card:hover .background .line.line-3:before, .services .expertise-card:hover .background .line.line-3:after {
  transition-delay: 0.3s;
}
html[data-theme=light] .services .expertise-card {
  background-color: transparent;
  box-shadow: 0px 3px 6px rgba(24, 24, 27, 0.02), 0px 2px 7px rgba(24, 24, 27, 0.04), 0 0 0 1px rgba(24, 24, 27, 0.08);
}
html[data-theme=light] .services .expertise-card::before {
  background-color: transparent;
}
html[data-theme=light] .services .expertise-card .icon::after {
  background-color: rgba(24, 24, 27, 0.04);
  border: 1px solid rgba(24, 24, 27, 0.1);
}
html[data-theme=light] .services .expertise-card .icon svg {
  color: #18181B;
}
html[data-theme=light] .services .expertise-card h4 {
  color: #18181B;
}
html[data-theme=light] .services .expertise-card p {
  color: #52525B;
}
html[data-theme=light] .services .expertise-card .shine:before {
  opacity: 0.3;
  background-image: conic-gradient(from 225deg at 50% 50%, rgba(52, 163, 163, 0) 0deg, #34a3a3 25deg, #EDFAF6 285deg, #FFFFFF 345deg, rgba(52, 163, 163, 0) 360deg);
}
html[data-theme=light] .services .expertise-card .background .tiles .tile {
  background-color: rgba(52, 163, 163, 0.08);
}
html[data-theme=light] .services .expertise-card .background .line:before, html[data-theme=light] .services .expertise-card .background .line:after {
  background-color: #E9E9E7;
}
html[data-theme=light] .services .expertise-card:hover {
  box-shadow: 0px 3px 6px rgba(24, 24, 27, 0.05), 0px 8px 15px rgba(24, 24, 27, 0.1), 0 0 0 1px rgba(24, 24, 27, 0.15);
}
html[data-theme=light] .services .expertise-card:hover .icon::after {
  background-color: rgba(24, 24, 27, 0.04);
  border-color: rgba(24, 24, 27, 0.34);
}
html[data-theme=light] .services .expertise-card:hover .icon svg {
  color: #18181B;
}

.experience {
  padding: 10rem 4rem;
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px), linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.experience::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 15s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-100px, 50px) scale(1.1);
  }
}
.experience .binary-rain {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}
@media (max-width: 768px) {
  .experience .binary-rain {
    width: 100px;
    opacity: 0.1;
  }
}
@media (max-width: 480px) {
  .experience .binary-rain {
    display: none;
  }
}
.experience .binary-rain .binary-column {
  position: absolute;
  top: -100%;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--neon-green);
  line-height: 1.5;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
  animation: binaryFall linear infinite;
  white-space: pre;
}
@media (max-width: 768px) {
  .experience .binary-rain .binary-column {
    font-size: 12px;
  }
}
.experience .binary-rain .binary-column:nth-child(1) {
  left: 0px;
  animation-duration: 7s;
  animation-delay: -1s;
}
.experience .binary-rain .binary-column:nth-child(2) {
  left: 25px;
  animation-duration: 7s;
  animation-delay: -2s;
}
.experience .binary-rain .binary-column:nth-child(3) {
  left: 50px;
  animation-duration: 6s;
  animation-delay: -4s;
}
.experience .binary-rain .binary-column:nth-child(4) {
  left: 75px;
  animation-duration: 7s;
  animation-delay: -3s;
}
.experience .binary-rain .binary-column:nth-child(5) {
  left: 100px;
  animation-duration: 8s;
  animation-delay: -4s;
}
.experience .binary-rain .binary-column:nth-child(6) {
  left: 125px;
  animation-duration: 5s;
  animation-delay: -1s;
}
.experience .binary-rain .binary-column:nth-child(7) {
  left: 150px;
  animation-duration: 6s;
  animation-delay: -2s;
}
.experience .binary-rain .binary-column:nth-child(8) {
  left: 175px;
  animation-duration: 8s;
  animation-delay: -2s;
}
@keyframes binaryFall {
  0% {
    top: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.experience .experience-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}
.experience .experience-header h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon-green);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.experience .experience-header h5::before, .experience .experience-header h5::after {
  content: "//";
  position: absolute;
  color: var(--neon-green);
  opacity: 0.5;
}
.experience .experience-header h5::before {
  left: -2rem;
}
.experience .experience-header h5::after {
  right: -2rem;
}
.experience .experience-header h2 {
  font-family: "Space Mono", monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}
.experience .timeline {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 7rem;
  position: relative;
  z-index: 2;
  perspective: 1000px;
  perspective-origin: center center;
}
@media (max-width: 768px) {
  .experience .timeline {
    padding-left: 4rem;
  }
}
.experience .timeline::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.7) 0%, rgba(212, 175, 55, 0.6) 50%, rgba(0, 255, 136, 0.7) 100%);
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.3), 0 0 12px rgba(0, 255, 136, 0.15);
  z-index: 1;
  animation: timelineGlow 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .experience .timeline::before {
    left: 1rem;
  }
}
@keyframes timelineGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.3), 0 0 12px rgba(0, 255, 136, 0.15);
  }
  50% {
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4), 0 0 16px rgba(0, 255, 136, 0.2);
  }
}
.experience .timeline::after {
  content: "";
  position: absolute;
  left: calc(2.5rem - 1px);
  top: 0;
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--neon-green) 30%, var(--neon-green) 70%, transparent 100%);
  box-shadow: 0 0 8px var(--neon-green);
  z-index: 3;
  animation: scrollFollow 3s ease-in-out infinite;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .experience .timeline::after {
    left: calc(1rem - 1px);
    height: 60px;
  }
}
@keyframes scrollFollow {
  0% {
    top: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 80px);
    opacity: 0;
  }
}
.experience .timeline-item {
  position: relative;
  margin-bottom: 4rem;
  animation: slideInRight 0.6s ease-out backwards;
}
.experience .timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.experience .timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.experience .timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.experience .timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.experience .timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.experience .timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}
.experience .timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}
.experience .timeline-item:nth-child(8) {
  animation-delay: 0.8s;
}
.experience .timeline-item:nth-child(9) {
  animation-delay: 0.9s;
}
.experience .timeline-item:nth-child(10) {
  animation-delay: 1s;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.experience .timeline-item:last-child {
  margin-bottom: 0;
}
.experience .timeline-item .timeline-dot {
  position: absolute;
  left: -3.5rem;
  top: 1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .experience .timeline-item .timeline-dot {
    left: -2rem;
  }
}
.experience .timeline-item .timeline-dot::before {
  content: ">";
  font-family: "JetBrains Mono", monospace;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--neon-green);
  animation: chevronPulse 2s ease-in-out infinite;
}
@keyframes chevronPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
.experience .timeline-item .experience-card {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.experience .timeline-item .experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.experience .timeline-item .experience-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}
.experience .timeline-item .experience-card:hover {
  border-color: rgba(0, 255, 136, 0.6);
  transform: translateX(12px) translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2), 0 0 0 1px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.experience .timeline-item .experience-card:hover::before {
  opacity: 1;
}
.experience .timeline-item .experience-card:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}
.experience .timeline-item .experience-card:hover .card-header h3 {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.experience .timeline-item .experience-card:hover .company {
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}
.experience .timeline-item .experience-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .experience .timeline-item .experience-card .card-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.experience .timeline-item .experience-card .card-header h3 {
  font-family: "Space Mono", monospace;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  flex: 1;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.experience .timeline-item .experience-card .card-header .date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: var(--rich-gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-weight: 500;
}
.experience .timeline-item .experience-card .company {
  font-size: 1.1rem;
  color: var(--neon-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  z-index: 1;
  transition: all 0.3s ease;
  font-family: "JetBrains Mono", monospace;
}
.experience .timeline-item .experience-card .company::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), var(--rich-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.experience .timeline-item .experience-card:hover .company::after {
  transform: scaleX(1);
}
.experience .timeline-item .experience-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 0 0;
  position: relative;
  z-index: 1;
}
.experience .timeline-item .experience-card ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.experience .timeline-item .experience-card ul li:last-child {
  margin-bottom: 0;
}
.experience .timeline-item .experience-card ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-size: 1.5rem;
  line-height: 1.7;
  transition: all 0.2s ease;
}
.experience .timeline-item .experience-card ul li:hover {
  color: var(--text-light);
  transform: translateX(4px);
}
.experience .timeline-item .experience-card ul li:hover::before {
  color: var(--rich-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@media only screen and (max-width: 768px) {
  .experience {
    padding: 6rem 2rem;
  }
  .experience .experience-header {
    margin-bottom: 3rem;
  }
  .experience .experience-header h5::before, .experience .experience-header h5::after {
    display: none;
  }
  .experience .timeline {
    padding-left: 4rem;
  }
  .experience .timeline-item {
    margin-bottom: 3rem;
  }
  .experience .timeline-item .timeline-dot {
    left: -2.5rem;
  }
  .experience .timeline-item .experience-card {
    padding: 1.5rem;
  }
  .experience .timeline-item .experience-card:hover {
    transform: translateY(-4px);
  }
}
@media only screen and (max-width: 480px) {
  .experience {
    padding: 4rem 1.5rem;
  }
  .experience .timeline {
    padding-left: 3rem;
  }
  .experience .timeline::before {
    left: 0.5rem;
  }
  .experience .timeline-item .timeline-dot {
    left: -2rem;
    width: 12px;
    height: 12px;
  }
  .experience .timeline-item .experience-card {
    padding: 1.25rem;
  }
  .experience .timeline-item .experience-card .card-header h3 {
    font-size: 1.1rem;
  }
  .experience .timeline-item .experience-card .company {
    font-size: 1rem;
  }
  .experience .timeline-item .experience-card ul li {
    font-size: 0.875rem;
  }
}
.footer {
  margin-top: 0;
  width: 100%;
  position: relative;
  z-index: 500;
  background: var(--bg-black);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  padding: 6rem 4rem 3rem;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 25%, var(--rich-gold) 50%, var(--neon-green) 75%, transparent 100%);
  z-index: 2;
}
.footer .footer-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.footer .footer-quote p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer .footer-quote .attribution {
  font-size: 1rem;
  color: var(--text-dark);
}
.footer .footer-cta {
  text-align: center;
  margin-bottom: 2rem;
}
.footer .footer-cta h3 {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  color: var(--neon-green);
  font-weight: 600;
  margin: 0;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.footer .footer-social a {
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer .footer-social a:hover {
  background: var(--neon-green);
  border-color: var(--neon-green);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}
.footer .footer-social a:hover ion-icon {
  color: var(--bg-black);
}
.footer .footer-social a ion-icon {
  font-size: 24px;
  color: var(--text-medium);
  transition: color 0.3s ease;
}
.footer .footer-eyes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 4rem;
  position: relative;
}
.footer .footer-eyes .eye {
  width: 50px;
  height: 50px;
  background-color: #dfd2d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.footer .footer-eyes .eye::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(214, 214, 214, 0.726);
  z-index: 2;
  filter: blur(0.2px);
  left: 15px;
  transform: rotate(45deg);
}
.footer .footer-eyes .eye .pupil {
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  border: 5px solid #413333;
  filter: blur(0.6px);
  position: relative;
  transition: transform 0.1s ease-out;
  will-change: transform;
}
.footer .footer-eyes .eye[data-eye=left] {
  box-shadow: -10px -15px 5px rgba(0, 0, 0, 0.349) inset;
}
.footer .footer-eyes .eye[data-eye=right] {
  box-shadow: 15px 15px 5px rgba(0, 0, 0, 0.233) inset, 10px 10px 5px rgba(41, 33, 33, 0.644) inset;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
  }
}
.footer .footer-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.footer .footer-card h3 {
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 0 1rem 0;
  font-weight: 600;
}
.footer .footer-card p, .footer .footer-card a {
  display: block;
  color: var(--text-medium);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.footer .footer-card p:last-child, .footer .footer-card a:last-child {
  margin-bottom: 0;
}
.footer .footer-card p:hover, .footer .footer-card a:hover {
  color: var(--neon-green);
  transform: translateX(4px);
}
.footer .footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .footer-copyright p {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 4rem 2rem 2rem;
  }
  .footer .footer-quote p {
    font-size: 1rem;
  }
  .footer .footer-cta h3 {
    font-size: 1.25rem;
  }
  .footer .footer-social {
    gap: 0.75rem;
    margin-bottom: 3rem;
  }
  .footer .footer-social a {
    width: 42px;
    height: 42px;
  }
  .footer .footer-social a ion-icon {
    font-size: 20px;
  }
  .footer .footer-eyes {
    gap: 40px;
    margin-bottom: 3rem;
  }
  .footer .footer-eyes .eye {
    width: 32px;
    height: 32px;
  }
  .footer .footer-eyes .eye .pupil {
    width: 12px;
    height: 12px;
  }
  .footer .footer-eyes::before {
    width: 40px;
  }
  .footer .footer-card {
    padding: 1.5rem;
  }
  .footer .footer-card h3 {
    font-size: 1rem;
  }
  .footer .footer-card p, .footer .footer-card a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer .footer-quote {
    margin-bottom: 2rem;
  }
  .footer .footer-quote p {
    font-size: 0.95rem;
  }
  .footer .footer-quote .attribution {
    font-size: 0.875rem;
  }
  .footer .footer-cta {
    margin-bottom: 1.5rem;
  }
  .footer .footer-social {
    margin-bottom: 2rem;
  }
  .footer .footer-eyes {
    margin-bottom: 2rem;
  }
  .footer .footer-content {
    gap: 1.5rem;
  }
}
.more-about {
  padding: 2rem;
  width: 100%;
  height: 100%;
  margin: auto;
  font-size: 0.9rem;
  color: var(--whiteLight);
}
.more-about h2 {
  font-size: 2.3rem;
  text-transform: uppercase;
  margin: 2rem 0 5rem;
}
.more-about h2 span {
  color: var(--secondColor);
}
.more-about-content {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 100%;
  justify-content: space-between;
}
.more-about-img {
  width: 40%;
  height: auto;
  padding: 0 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 400px;
  z-index: 100;
}
.more-about-text {
  width: 60%;
  padding: 0 15px;
}
.more-about-text h3 {
  font-size: 1.2rem;
  margin: 5rem 0 2.5rem;
}
.more-about-text .skills {
  display: flex;
  flex-wrap: wrap;
}
.more-about-text .skills .skill-item {
  background: rgba(var(--darkBlue), 0.7);
  border: 1px solid var(--mainColor);
  padding: 5px 15px;
  margin: 0 10px 10px 0;
  border-radius: 20px;
}
.more-about-text .tabs {
  margin-top: 4rem;
}
.more-about-text .tabs .tab-item {
  padding: 2px;
  background-color: transparent;
  border: none;
  display: inline-block;
  color: var(--thirdColor);
  font-size: 1.1rem;
  cursor: crosshair;
  font-weight: 500;
  font-family: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-right: 30px;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.more-about-text .tabs .tab-item:last-child {
  margin: 0;
}
.more-about-text .tabs .tab-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--thirdColor);
  transition: width 0.3s ease;
}
.more-about-text .tabs .tab-item:hover::before {
  width: 100%;
}
.more-about-text .tabs .tab-item.active {
  color: var(--mainColor);
  opacity: 1;
  cursor: crosshair;
}
.more-about-text .tabs .tab-item.active::before {
  width: 100%;
  background-color: var(--mainColor);
}

.tab-content {
  padding: 40px 0;
  display: none;
}
.tab-content .timeline {
  position: relative;
}
.tab-content .timeline::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  left: 5px;
  background-color: var(--mainColor);
}
.tab-content .timeline-item {
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0 0 40px;
}
.tab-content .timeline-item::before {
  content: "";
  position: absolute;
  height: 11px;
  width: 11px;
  background-color: var(--mainColor);
  left: 0;
  top: 16px;
  border-radius: 50%;
}
.tab-content .timeline-item .date {
  display: block;
  color: var(--mainColor);
  font-weight: 400;
  margin: 0 0 10px;
}
.tab-content .timeline-item h4 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.tab-content .timeline-item h4 span {
  font-weight: 400;
  font-style: italic;
}
.tab-content .timeline-item ul {
  list-style-type: square;
}
.tab-content .timeline-item ul li {
  margin-bottom: 1rem;
}
.tab-content .timeline-item:last-child {
  margin-bottom: 0;
}
.tab-content.active {
  display: block;
}/*# sourceMappingURL=styles.css.map */