.vc-page-main {
  position: relative;
  z-index: 8;
  padding-top: clamp(6rem, 14vw, 8rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.vc-hero {
  position: relative;
  padding: 3rem 0 3rem;
  text-align: center;
}

.vc-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 50%;
  width: min(62vw, 40rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(125, 152, 255, 0),
    rgba(125, 152, 255, 0.2),
    rgba(125, 152, 255, 0)
  );
  opacity: 0.55;
}

.vc-kicker {
  margin-bottom: 1rem;
  color: rgba(189, 164, 255, 0.86);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.vc-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.25rem, 8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.97);
}

.vc-intro {
  max-width: 52rem;
  margin: 1.05rem auto 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.vc-projects-section {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.vc-section-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.vc-project-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}

.vc-project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(12, 17, 30, 0.6), rgba(7, 10, 18, 0.92)),
    #070b14;
  box-shadow:
    var(--panel-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 190ms var(--ease-smooth),
    border-color 220ms var(--ease-smooth),
    box-shadow 220ms var(--ease-smooth);
}

.vc-project-card:hover,
.vc-project-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(168, 120, 255, 0.36);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vc-project-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vc-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.05) 10%, rgba(6, 8, 15, 0.5) 100%);
  pointer-events: none;
}

.vc-project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms var(--ease-smooth);
}

.vc-project-card:hover .vc-project-image,
.vc-project-card:focus-within .vc-project-image {
  transform: scale(1.05);
}

.vc-project-content {
  padding: 1.1rem 1.05rem 1.2rem;
}

.vc-project-content h3 {
  margin: 0.52rem 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.97);
  font-size: 1.18rem;
}

.vc-project-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.vc-project-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.15rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vc-project-status--live {
  color: rgba(168, 255, 196, 0.92);
  border-color: rgba(122, 255, 180, 0.38);
  background:
    linear-gradient(180deg, rgba(120, 255, 186, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(15, 25, 17, 0.84);
}

.vc-project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.86rem;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 15, 26, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease-smooth),
    border-color 180ms var(--ease-smooth),
    background 180ms var(--ease-smooth);
}

.vc-project-link:hover,
.vc-project-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(195, 163, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(182, 140, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(16, 20, 36, 0.84);
  outline: none;
}

.vc-project-status--in-dev {
  color: rgba(255, 206, 123, 0.9);
  border-color: rgba(255, 201, 118, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 187, 115, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(30, 22, 14, 0.84);
}

.vc-project-status--explore {
  color: rgba(154, 196, 255, 0.92);
  border-color: rgba(130, 172, 255, 0.4);
  background:
    linear-gradient(180deg, rgba(116, 150, 255, 0.2), rgba(255, 255, 255, 0.02)),
    rgba(15, 17, 28, 0.84);
}

.vc-project-status--planning {
  color: rgba(217, 181, 255, 0.9);
  border-color: rgba(198, 149, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(201, 152, 255, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(22, 16, 34, 0.82);
}

@media (min-width: 640px) {
  .vc-project-grid {
    gap: 1.25rem;
  }

  .vc-project-content {
    padding: 1.2rem 1.15rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .vc-projects-section {
    margin-top: 3.2rem;
  }

  .vc-project-grid {
    gap: 1.4rem;
  }
}

@media (max-width: 700px) {
  .vc-page-main {
    padding-top: clamp(3.4rem, 10vw, 4.2rem);
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }

  .vc-hero {
    padding: 1.9rem 0 1.7rem;
  }

  .vc-intro {
    margin-top: 0.85rem;
  }

  .vc-projects-section {
    margin-top: 1.2rem;
  }

  .vc-project-grid {
    gap: 0.9rem;
  }

  .vc-project-content {
    padding: 0.95rem 0.88rem 1.02rem;
  }
}

@media (max-width: 460px) {
  .vc-page-main {
    padding-top: 2.95rem;
  }

  .vc-hero {
    padding: 1.45rem 0 1.25rem;
  }
}
