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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

body {
  background-color: rgb(5, 3, 5);
  color: rgba(255, 255, 255, 0.9);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

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

a:hover {
  text-decoration: none;
}

button,
[role="button"],
a[href] {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0 0 1em 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section[id],
div[id] {
  scroll-margin-top: 0;
}

.site-logo {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 100;
  padding: 10px 0;
  cursor: default;
}

.site-logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  cursor: default;
}

.site-logo-highlight {
  background: linear-gradient(to right, #00ff41, #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media screen and (max-width: 768px) {
  .site-logo {
    top: 15px;
    left: 30px;
  }

  .site-logo-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .site-logo {
    top: 12px;
    left: 20px;
  }

  .site-logo-text {
    font-size: 16px;
  }
}

.footer-container {
  background-color: rgba(15, 15, 15, 0.9) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 80px;
  padding: 60px 0 !important;
  width: 100%;
}

.footer-container>.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 48px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
  }
}

.footer-main-column {
  flex: 1;
  -webkit-flex: 1;
  width: 100%;
  min-width: 0;
}

.footer-logo {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-brand-highlight {
  background: linear-gradient(to right, #00ff41, #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 448px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.footer-column {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  width: 100%;
  min-width: 120px;
}

@media (min-width: 768px) {
  .footer-column {
    flex: 0 0 150px;
    -webkit-flex: 0 0 150px;
    width: 150px;
  }
}

.footer-column-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ff41;
  margin-bottom: 24px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 16px;
}

.footer-menu-item {
  display: block;
}

.footer-menu-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 8px;
}

.footer-menu-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(29, 255, 26, 0.5);
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
  }
}

.footer-copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-status {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 8px;
}

.footer-status-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #00ff41;
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.footer-status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #00ff41;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section {
  position: relative;
  min-height: 800px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(5, 3, 5, 0.9) 0%, rgba(5, 3, 5, 0.8) 50%, rgba(5, 3, 5, 0.5) 100%);
  z-index: 10;
}

.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 11;
}


.hero-container {
  position: relative;
  z-index: 20;
  width: 100%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-status {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.1);
  padding: 8px 12px;
  margin-bottom: 32px;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  background: #00ff41;
  border-radius: 50%;
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #00ff41;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-title-gradient {
  background: linear-gradient(to right, #00ff41, #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.75;
  border-left: 2px solid rgba(0, 255, 65, 0.5);
  padding-left: 24px;
  text-align: left;
}

.hero-buttons {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  -webkit-justify-content: center;
}

.btn {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 56px;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #00ff41;
  color: rgb(5, 3, 5);
}

.btn-primary:hover {
  background: rgba(0, 255, 65, 0.9);
}

.btn-outline {
  border: 1px solid rgba(0, 255, 65, 0.5);
  color: #00ff41;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 255, 65, 0.1);
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section:nth-of-type(2),
.section:nth-of-type(4) {
  background-color: rgba(0, 255, 65, 0.03);
  position: relative;
}

.section:nth-of-type(2)::before,
.section:nth-of-type(4)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(to right, rgba(128, 128, 128, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.section:nth-of-type(2)>.container,
.section:nth-of-type(4)>.container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.05);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #00ff41;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.section-title-gradient {
  background: linear-gradient(to right, #00ff41, #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

.tech-grid {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.tech-grid>* {
  flex: 1 1 calc(50% - 12px);
  -webkit-flex: 1 1 calc(50% - 12px);
  min-width: 0;
}

@media (max-width: 1024px) {
  .tech-grid>* {
    flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}

.tech-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ff41, transparent);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.tech-card:hover {
  border-color: #00ff41;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

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

.tech-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #00ff41;
  margin-bottom: 20px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 12px;
}

.tech-card-title::before {
  content: '▸';
  color: #00ff41;
  font-size: 1.5rem;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 12px;
}

.tech-list li:last-child {
  border-bottom: none;
}

.tech-list li::before {
  content: '•';
  color: #00ff41;
  font-size: 1.2rem;
}

.capability-grid {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}

.capability-grid>* {
  flex: 1 1 calc(25% - 15px);
  -webkit-flex: 1 1 calc(25% - 15px);
  min-width: 0;
}

@media (max-width: 1024px) {
  .capability-grid>* {
    flex: 1 1 calc(50% - 10px);
    -webkit-flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .capability-grid>* {
    flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}

.capability-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 32px 24px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 160px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
}

.capability-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ff41, transparent);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.capability-card:hover {
  border-color: #00ff41;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.capability-card:hover::after {
  opacity: 1;
}

.capability-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #00ff41;
  margin-bottom: 12px;
}

.capability-card-desc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 200, 255, 0.1));
  border-left: 4px solid #00ff41;
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.highlight-box p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
}

.projects-grid {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  gap: 24px;
  margin-top: 48px;
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex: 1 1 calc(33.333% - 16px);
  -webkit-flex: 1 1 calc(33.333% - 16px);
  min-width: 0;
  position: relative;
}

@media (max-width: 1024px) {
  .project-card {
    flex: 1 1 calc(50% - 12px);
    -webkit-flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .project-card {
    flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
  }
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00ff41, #00c8ff);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  border-color: #00ff41;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.project-card:hover::before {
  opacity: 1;
}

.project-header {
  background: rgba(0, 255, 65, 0.05);
  border-bottom: 1px solid rgba(0, 255, 65, 0.2);
  padding: 24px 32px;
  position: relative;
}

.project-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ff41, transparent);
  opacity: 0.5;
}

.project-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #00ff41;
  margin: 0;
  line-height: 1.4;
  position: relative;
}

.project-header h3::before {
  content: '▸';
  color: #00ff41;
  margin-right: 12px;
  font-size: 1.2rem;
}

.project-body {
  padding: 32px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.project-body>p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}

.project-body li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.project-body li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00ff41;
}

.project-tags {
  margin-top: auto;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.3);
  color: #00ff41;
  padding: 4px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

@-webkit-keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  body {
    height: 100%;
  }

  .hero-section {
    position: relative;
    min-height: auto;
    height: 100%;
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  .hero-subtitle {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(0, 255, 65, 0.5);
    padding-top: 16px;
  }
}