.projects-page {
  --projects-ink: #11131a;
  --projects-muted: #687083;
  --projects-line: rgba(17, 19, 26, 0.1);
  --projects-surface: #f7f8fb;
  background: #fff;
  color: var(--projects-ink);
  overflow: hidden;
}

.projects-page * {
  box-sizing: border-box;
}

.projects-page a {
  color: inherit;
}

.projects-hero {
  position: relative;
  padding: 205px 0 92px;
  border-bottom: 1px solid var(--projects-line);
  background:
    radial-gradient(circle at 84% 40%, rgba(49, 87, 215, 0.13), transparent 19%),
    linear-gradient(135deg, #fff 0%, #fbfcff 60%, #f4f6fc 100%);
}

.projects-hero::before,
.projects-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.projects-hero::before {
  top: 110px;
  right: 8%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95) 0 7px, rgba(222, 227, 243, 0.7) 8px 12px),
    #eef1f8;
  box-shadow: 0 30px 70px rgba(36, 46, 82, 0.13);
  opacity: 0.8;
}

.projects-hero::after {
  top: 180px;
  right: 7%;
  width: 130px;
  height: 90px;
  background-image: radial-gradient(circle, #7b8cff 2px, transparent 2.5px);
  background-size: 31px 31px;
}

.projects-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.projects-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--webcolic-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projects-eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.projects-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--projects-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.projects-hero p {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--projects-muted);
  font-size: 18px;
  line-height: 1.75;
}

.projects-catalog {
  padding: 50px 0 105px;
}

.projects-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.projects-filter {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--projects-line);
  border-radius: 10px;
  background: #fff;
  color: #4d5566;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.projects-filter:hover,
.projects-filter:focus-visible {
  border-color: var(--projects-ink);
  color: var(--projects-ink);
  transform: translateY(-1px);
}

.projects-filter.is-active {
  border-color: var(--projects-ink);
  background: var(--projects-ink);
  color: #fff;
}

.projects-sort-wrap {
  position: relative;
  flex: 0 0 auto;
}

.projects-sort-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.projects-sort {
  min-width: 145px;
  height: 44px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--projects-line);
  border-radius: 10px;
  background: #fff;
  color: var(--projects-ink);
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.projects-sort:focus {
  border-color: var(--webcolic-primary);
  outline: 3px solid rgba(49, 87, 215, 0.12);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}

.project-card {
  min-width: 0;
  border: 1px solid var(--projects-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 7px 26px rgba(27, 33, 52, 0.035);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card[hidden] {
  display: none;
}

.project-card:hover {
  border-color: rgba(49, 87, 215, 0.24);
  box-shadow: 0 22px 52px rgba(27, 33, 52, 0.12);
  transform: translateY(-7px);
}

.project-card__link {
  display: block;
  text-decoration: none;
}

.project-card__visual {
  position: relative;
  height: 280px;
  padding: 22px;
  overflow: hidden;
  isolation: isolate;
}

.project-card__visual--media { background: color-mix(in srgb,var(--project-accent,#315be8) 14%,#eef1f8); }
.project-card__visual--media > img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.25,1); }
.project-card__link:hover .project-card__visual--media > img { transform: scale(1.035); }
.project-card__placeholder { width: 100%; height: 100%; padding: clamp(24px,4vw,58px); display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: linear-gradient(145deg,var(--project-accent,#315be8),#11183f); }
.project-card__placeholder span { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.project-card__placeholder strong { max-width: 80%; font-size: clamp(25px,3.2vw,48px); line-height: 1.03; }
.project-card__meta { margin-top: 7px; display: block; color: #7a7f8e; font: 500 10px/1.3 "Space Mono",monospace; }

.project-card__visual::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.project-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 105px;
  padding: 19px 20px 21px;
}

.project-card__category {
  display: block;
  margin-bottom: 8px;
  color: #7a8190;
  font-size: 12px;
  font-weight: 500;
}

.project-card__title {
  margin: 0;
  color: var(--projects-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.project-card__arrow {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--projects-line);
  border-radius: 50%;
  color: var(--projects-ink);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.project-card:hover .project-card__arrow {
  border-color: var(--projects-ink);
  background: var(--projects-ink);
  color: #fff;
  transform: rotate(45deg);
}

.project-card__arrow svg {
  width: 15px;
  height: 15px;
}

.mock-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mock-nav i {
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.35;
}

.mock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 4px 9px;
  border-radius: 20px;
  background: currentColor;
  color: inherit;
  font-size: 6px;
}

.mock-button span {
  color: #fff;
  mix-blend-mode: normal;
}

.art-webcolic {
  background:
    radial-gradient(circle at 75% 50%, rgba(84, 114, 255, 0.45), transparent 22%),
    linear-gradient(145deg, #05060a 0%, #111528 55%, #06070c 100%);
  color: #fff;
}

.art-webcolic .mock-title {
  position: relative;
  z-index: 2;
  width: 82%;
  margin-top: 56px;
  color: #fff;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.art-webcolic .mock-title span {
  color: #8198ff;
}

.art-webcolic .orb {
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: inset 25px 0 45px rgba(99, 128, 255, 0.22), 0 0 60px rgba(79, 108, 240, 0.18);
}

.art-lunora {
  background: linear-gradient(145deg, #f6f0e8, #e8ddd0);
  color: #30261d;
}

.art-lunora .mock-title {
  position: relative;
  z-index: 2;
  width: 58%;
  margin-top: 60px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.bottle-group {
  position: absolute;
  right: 33px;
  bottom: 17px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.bottle {
  position: relative;
  width: 45px;
  height: 112px;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(90deg, #714414, #d28a34 50%, #673a0b);
  box-shadow: 0 18px 22px rgba(69, 41, 19, 0.22);
}

.bottle.small {
  width: 36px;
  height: 82px;
}

.bottle::before {
  position: absolute;
  top: -42px;
  left: 50%;
  width: 15px;
  height: 45px;
  content: "";
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, #111, #b9a17d 50%, #1d1a16);
  transform: translateX(-50%);
}

.bottle::after {
  position: absolute;
  top: 36px;
  right: 5px;
  left: 5px;
  height: 38px;
  content: "LUNORA";
  padding-top: 14px;
  background: #f4eadc;
  color: #3b2b20;
  font-size: 5px;
  text-align: center;
}

.art-finans {
  background: linear-gradient(140deg, #1a66cf, #0f3c88);
  color: #fff;
}

.art-finans .mock-title {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-top: 58px;
  color: #fff;
  font-size: 29px;
  line-height: 1.03;
}

.phone-stack {
  position: absolute;
  right: 23px;
  bottom: -16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  transform: rotate(-2deg);
}

.phone {
  width: 74px;
  height: 166px;
  padding: 12px 7px;
  border: 4px solid #16243b;
  border-radius: 18px;
  background: #f7faff;
  box-shadow: 0 18px 30px rgba(4, 17, 42, 0.3);
}

.phone.small {
  width: 62px;
  height: 140px;
  transform: translateY(12px);
}

.phone::before,
.dashboard-panel::before {
  display: block;
  width: 72%;
  height: 5px;
  margin-bottom: 10px;
  content: "";
  border-radius: 5px;
  background: #d7e5f8;
  box-shadow: 0 18px 0 #2e77da, 0 36px 0 #e8eef8, 0 54px 0 #a9c8ef, 0 72px 0 #e8eef8;
}

.art-yapitek {
  background: linear-gradient(160deg, #d8e5ef 0%, #8ba3b5 100%);
  color: #102233;
}

.art-yapitek::before {
  position: absolute;
  inset: 40px -40px -30px 130px;
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.52);
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.4) 45px 49px),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(255, 255, 255, 0.3) 33px 36px),
    rgba(68, 91, 111, 0.38);
  transform: skewY(-5deg);
}

.art-yapitek .mock-title {
  position: relative;
  z-index: 2;
  width: 65%;
  margin-top: 58px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(25, 43, 57, 0.28);
}

.art-greenlife {
  background: linear-gradient(150deg, #f4f4ea, #dde3cd);
  color: #203322;
}

.art-greenlife .mock-title {
  position: relative;
  z-index: 2;
  width: 58%;
  margin-top: 61px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.07;
}

.jar-group {
  position: absolute;
  right: 22px;
  bottom: 23px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.jar {
  width: 57px;
  height: 68px;
  border-radius: 7px 7px 15px 15px;
  background: linear-gradient(90deg, #5f7b3b, #9bad74 52%, #4e6a31);
  box-shadow: 0 13px 22px rgba(49, 65, 33, 0.2);
}

.jar.tall {
  width: 48px;
  height: 104px;
}

.jar::before {
  display: block;
  width: calc(100% + 4px);
  height: 12px;
  margin: -5px 0 21px -2px;
  content: "";
  border-radius: 5px;
  background: #263323;
}

.jar::after {
  display: block;
  width: 80%;
  height: 18px;
  margin: 0 auto;
  content: "";
  background: #eee9d6;
}

.art-delice {
  background: radial-gradient(circle at 72% 56%, rgba(170, 112, 61, 0.3), transparent 24%), #171412;
  color: #f3e7d5;
}

.art-delice .mock-title {
  position: relative;
  z-index: 2;
  width: 58%;
  margin-top: 57px;
  color: #f4e7d4;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.03;
}

.plate {
  position: absolute;
  right: 18px;
  bottom: -22px;
  width: 178px;
  height: 178px;
  border: 1px solid #d6b07e;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 43%, #cf8e55 0 10%, transparent 11%),
    radial-gradient(circle at 58% 55%, #83904d 0 8%, transparent 9%),
    radial-gradient(circle, #ece0ce 0 47%, #9b7a56 48% 50%, #241e19 51%);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.38);
}

.art-fastlog {
  background: linear-gradient(150deg, #1161ab 0%, #06345f 100%);
  color: #fff;
}

.art-fastlog .mock-title {
  position: relative;
  z-index: 3;
  width: 58%;
  margin-top: 56px;
  color: #fff;
  font-size: 29px;
  line-height: 1.03;
}

.truck {
  position: absolute;
  right: 19px;
  bottom: 35px;
  z-index: 2;
  width: 145px;
  height: 54px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(90deg, #f6f8fb 0 68%, #dce8f1 68%);
  box-shadow: 0 18px 30px rgba(5, 27, 51, 0.32);
}

.truck::before {
  position: absolute;
  right: -34px;
  bottom: 0;
  width: 42px;
  height: 42px;
  content: "";
  border-radius: 6px 11px 2px 2px;
  background: #e7eef4;
}

.truck::after {
  position: absolute;
  right: -22px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  content: "";
  border: 5px solid #182334;
  border-radius: 50%;
  background: #8797a9;
  box-shadow: -102px 0 0 -5px #8797a9, -102px 0 0 0 #182334;
}

.art-taskly {
  background: linear-gradient(145deg, #eef5ff, #dfeaf7);
  color: #273241;
}

.art-taskly .dashboard-panel {
  position: absolute;
  right: 28px;
  bottom: 23px;
  width: 175px;
  height: 183px;
  padding: 22px;
  border: 1px solid rgba(31, 75, 128, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 20px 34px rgba(33, 64, 101, 0.18);
}

.art-taskly .mock-title {
  position: relative;
  z-index: 3;
  width: 44%;
  margin-top: 57px;
  color: #1d2a39;
  font-size: 27px;
  line-height: 1.04;
}

.art-vessora {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), transparent 62%),
    linear-gradient(145deg, #e7e6e5, #bab9b8);
  color: #171717;
}

.art-vessora::before {
  position: absolute;
  right: 32px;
  bottom: -68px;
  width: 190px;
  height: 270px;
  content: "";
  border-radius: 52% 48% 18% 18%;
  background: linear-gradient(120deg, #262626, #797979 52%, #181818);
  transform: rotate(-8deg);
  filter: grayscale(1);
}

.art-vessora .mock-title {
  position: relative;
  z-index: 3;
  width: 53%;
  margin-top: 62px;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.02;
}

.projects-empty {
  display: none;
  padding: 72px 24px;
  border: 1px dashed var(--projects-line);
  border-radius: 18px;
  color: var(--projects-muted);
  text-align: center;
}

.projects-empty.is-visible {
  display: block;
}

.projects-cta {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  align-items: center;
  gap: 38px;
  margin-top: 48px;
  padding: 30px 34px;
  border: 1px solid var(--projects-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 4% 45%, rgba(49, 87, 215, 0.13), transparent 11%),
    #fafbfe;
}

.projects-cta__title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.projects-cta__icon {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(29, 37, 66, 0.1);
}

.projects-cta__icon svg {
  width: 24px;
  height: 24px;
}

.projects-cta h2 {
  margin: 0;
  color: var(--projects-ink);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.projects-cta p {
  margin: 0;
  color: var(--projects-muted);
  font-size: 15px;
  line-height: 1.65;
}

.projects-cta .btn {
  white-space: nowrap;
}

.project-footer .footer-top {
  padding-top: 82px;
}

.project-footer__statement {
  max-width: 800px;
  margin-bottom: 54px;
  color: #fff;
  font-size: clamp(36px, 4vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.project-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-footer__links a {
  font-size: 15px;
}

@media (max-width: 1199px) {
  .projects-hero::before {
    right: 3%;
    width: 210px;
    height: 210px;
  }

  .projects-hero__content {
    max-width: 690px;
  }

  .project-card__visual {
    height: 245px;
  }

  .projects-cta {
    grid-template-columns: 1fr auto;
  }

  .projects-cta p {
    grid-column: 1 / 2;
    padding-left: 72px;
  }

  .projects-cta .btn {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 991px) {
  .projects-hero {
    padding: 165px 0 72px;
  }

  .projects-hero::before {
    top: 132px;
    right: -65px;
    width: 190px;
    height: 190px;
  }

  .projects-hero::after {
    display: none;
  }

  .projects-hero__content {
    max-width: 75%;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card__visual {
    height: 270px;
  }
}

@media (max-width: 767px) {
  .projects-hero {
    padding: 140px 0 58px;
  }

  .projects-hero__content {
    max-width: 100%;
  }

  .projects-hero h1 {
    max-width: 92%;
    font-size: clamp(40px, 12vw, 58px);
  }

  .projects-hero p {
    max-width: 87%;
    font-size: 16px;
  }

  .projects-hero::before {
    top: 185px;
    right: -95px;
    width: 160px;
    height: 160px;
    opacity: 0.5;
  }

  .projects-catalog {
    padding: 36px 0 70px;
  }

  .projects-toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .projects-filters {
    flex-wrap: nowrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .projects-filters::-webkit-scrollbar {
    display: none;
  }

  .projects-filter {
    flex: 0 0 auto;
  }

  .projects-sort {
    width: 100%;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card__visual {
    height: min(72vw, 330px);
  }

  .projects-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 24px;
  }

  .projects-cta p {
    grid-column: auto;
    padding-left: 0;
  }

  .projects-cta .btn {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .project-footer__statement {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .projects-hero h1 {
    max-width: 100%;
    font-size: 38px;
    overflow-wrap: normal;
  }

  .projects-hero p {
    max-width: 100%;
  }

  .project-card__visual {
    height: 245px;
    padding: 18px;
  }

  .art-webcolic .mock-title,
  .art-finans .mock-title,
  .art-yapitek .mock-title,
  .art-fastlog .mock-title {
    font-size: 25px;
  }

  .phone-stack {
    right: 12px;
    transform: scale(0.84) translate(10%, 9%);
    transform-origin: bottom right;
  }

  .bottle-group,
  .jar-group {
    right: 14px;
    transform: scale(0.84);
    transform-origin: bottom right;
  }

  .art-taskly .dashboard-panel {
    right: 12px;
    transform: scale(0.82);
    transform-origin: bottom right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-card,
  .project-card__arrow,
  .projects-filter {
    transition: none;
  }
}

/* Global site theme pairing ---------------------------------------------------- */
html[data-theme-version="dark"] .projects-page {
  --projects-ink: #f5f7ff;
  --projects-muted: rgba(220, 226, 247, 0.64);
  --projects-line: rgba(255, 255, 255, 0.1);
  --projects-surface: #10162f;
  background: #070a1a;
  color: var(--projects-ink);
}

html[data-theme-version="dark"] .projects-hero {
  background:
    radial-gradient(circle at 84% 40%, rgba(86, 120, 255, 0.2), transparent 20%),
    linear-gradient(135deg, #0c1126 0%, #080b1b 64%, #111a3a 100%);
}

html[data-theme-version="dark"] .projects-hero::before {
  background:
    repeating-radial-gradient(circle at 30% 30%, rgba(24, 32, 67, 0.96) 0 7px, rgba(74, 91, 153, 0.38) 8px 12px),
    #111831;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

html[data-theme-version="dark"] .projects-catalog {
  background: #070a1a;
}

html[data-theme-version="dark"] .projects-filter,
html[data-theme-version="dark"] .projects-sort,
html[data-theme-version="dark"] .project-card,
html[data-theme-version="dark"] .projects-cta__icon {
  color: var(--projects-ink);
  background: #10162f;
}

html[data-theme-version="dark"] .projects-filter:hover,
html[data-theme-version="dark"] .projects-filter:focus-visible {
  border-color: #86a1ff;
  color: #fff;
}

html[data-theme-version="dark"] .projects-filter.is-active {
  color: #fff;
  background: #3157d7;
  border-color: #5578ff;
}

html[data-theme-version="dark"] .project-card {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

html[data-theme-version="dark"] .project-card:hover {
  border-color: rgba(111, 145, 255, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

html[data-theme-version="dark"] .project-card__category,
html[data-theme-version="dark"] .project-card__meta {
  color: rgba(220, 226, 247, 0.5);
}

html[data-theme-version="dark"] .project-card__arrow {
  color: #dce3ff;
}

html[data-theme-version="dark"] .project-card:hover .project-card__arrow {
  color: #fff;
  background: #3157d7;
  border-color: #5578ff;
}

html[data-theme-version="dark"] .projects-cta {
  background:
    radial-gradient(circle at 4% 45%, rgba(86, 120, 255, 0.2), transparent 12%),
    #10162f;
}
