/* GLOBAL */
:root {
  --bg-color: #0F0F0F;
  --surface-color: #1E1E1E;
  --accent-color: #00E676;
  /* Hacker Green */
  --text-color: #E0E0E0;
}

body {
  margin: 0;
  padding-top: 80px;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
}

/* HEADER */
.clean-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 80px;
}

.app-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* HERO SECTION */
.hero-section {
  height: calc(100vh - 80px);
  width: 100%;
}

.heroSwiper,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

/* SLIDE */
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* LEFT-ALIGNED HERO CONTENT */
.hero-content {
  max-width: 520px;
  margin-left: 8%;
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: #aaa;
}

/* READABILITY OVERLAY (Dark) */
.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 15, 15, 0.95) 0%,
      rgba(15, 15, 15, 0.7) 50%,
      rgba(15, 15, 15, 0.4) 100%);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    margin: 0 6%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}


/* CONTENT */
.container h1,
.container h2 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.container p {
  color: #ccc;
  line-height: 1.6;
}

/* TYPEWRITER EFFECT */
.typewriter {
  overflow: hidden;
  border-right: .15em solid var(--accent-color);
  white-space: nowrap;
  animation:
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--accent-color)
  }
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  margin-top: 80px;
}

.footer h5,
.footer h6 {
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  font-size: 14px;
  color: #aaa;
}

/* FOOTER */
.site-footer {
  background-color: #050505;
  /* Almost black */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.site-footer h6,
.site-footer h5 {
  color: #ffffff;
  font-weight: 500;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 80px;
  height: auto;
}

.footer-desc {
  font-size: 14px;
  color: #94a3b8;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 20px;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.08);
}

.footer-bottom {
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.section {
  padding: 100px 0;
}

.section h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

.home-link {
  text-decoration: none;
  color: inherit;
}

.home-link:hover {
  opacity: 0.85;
}