/* =========================================
   VARIABLES
========================================= */

:root {
  --bg: #05070a;
  --text: #f5f3ef;

  --muted: rgba(245, 243, 239, 0.64);
  --soft: rgba(245, 243, 239, 0.12);
  --line: rgba(245, 243, 239, 0.72);

  --font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


/* =========================================
   RESET
========================================= */

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


html {
  scroll-behavior: smooth;
  background: var(--bg);
}


body {
  min-width: 320px;

  background: var(--bg);
  color: var(--text);

  font-family: var(--font);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


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


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  width: 100%;
  min-height: 100svh;

  overflow: hidden;
  isolation: isolate;

  background: var(--bg);
}


/* =========================================
   HERO IMAGE
========================================= */

.hero__image {
  position: absolute;
  inset: 0;

  z-index: -4;

  background-image: url("assets/img/gab.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  transform: scale(1.02);

  filter:
    grayscale(1)
    brightness(0.54)
    contrast(0.92);
}


/* =========================================
   IMAGE VEIL
========================================= */

.hero__veil {
  position: absolute;
  inset: 0;

  z-index: -3;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 10, 0.97) 0%,
      rgba(5, 7, 10, 0.90) 22%,
      rgba(5, 7, 10, 0.60) 48%,
      rgba(5, 7, 10, 0.25) 72%,
      rgba(5, 7, 10, 0.44) 100%
    ),

    linear-gradient(
      180deg,
      rgba(5, 7, 10, 0.72) 0%,
      transparent 25%,
      transparent 72%,
      rgba(5, 7, 10, 0.78) 100%
    );
}


/* =========================================
   BACKGROUND GRID
========================================= */

.hero__grid {
  position: absolute;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  opacity: 0.045;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.4) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.35) 1px,
      transparent 1px
    );

  background-size: 8vw 8vw;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: absolute;

  top: clamp(28px, 5vw, 60px);
  left: clamp(28px, 8vw, 128px);
  right: clamp(28px, 8vw, 128px);

  z-index: 10;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;
}


/* =========================================
   LOGO
========================================= */

.brand {
  width: fit-content;

  font-size: clamp(22px, 2vw, 30px);

  font-weight: 500;
  line-height: 1;

  letter-spacing: -0.06em;

  color: #ffffff;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: clamp(24px, 4vw, 56px);
}


.main-nav a {
  position: relative;

  padding: 10px 0;

  font-size: 13px;
  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.02em;

  color: rgba(255, 255, 255, 0.64);

  transition:
    color 0.25s ease;
}


.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: 2px;

  height: 1px;

  background: #ffffff;

  transition:
    right 0.3s ease;
}


.main-nav a:hover,
.main-nav a.is-active {
  color: #ffffff;
}


.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero__content {
  position: absolute;

  top: 45%;

  left: clamp(28px, 8vw, 128px);

  width: min(860px, 65vw);

  transform: translateY(-50%);

  z-index: 3;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {
  position: relative;

  display: flex;
  align-items: center;

  gap: 18px;

  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.4;

  letter-spacing: 0.14em;

  color: rgba(255, 255, 255, 0.62);
}


.eyebrow::before {
  content: "";

  display: block;

  width: 54px;
  height: 1px;

  background: rgba(255, 255, 255, 0.36);
}


/* =========================================
   MAIN TITLE
========================================= */

.hero h1 {
  width: max-content;
  max-width: none;

  white-space: nowrap;

  font-size: clamp(58px, 8vw, 128px);

  font-weight: 300;

  line-height: 0.95;

  letter-spacing: -0.065em;

  color: #f7f6f3;
}


/* =========================================
   INTRO
========================================= */

.intro {
  width: min(470px, 90%);

  margin-top: 30px;

  font-size: 16px;
  font-weight: 300;

  line-height: 1.7;

  letter-spacing: -0.01em;

  color: rgba(255, 255, 255, 0.64);
}


/* =========================================
   CTA
========================================= */

.hero__cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-top: 32px;

  min-height: 48px;

  padding: 14px 26px;

  background: #ffffff;
  color: #05070a;

  border: none;
  border-radius: 4px;

  font-family: var(--font);

  font-size: 16px;
  font-weight: 400;

  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.hero__cta:hover {
  background: #ededed;

  transform: translateY(-2px);
}


.hero__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}


/* =========================================
   SOCIAL NETWORKS
========================================= */

.socials {
  position: absolute;

  left: clamp(28px, 8vw, 128px);
  bottom: clamp(32px, 8vw, 88px);

  z-index: 4;

  display: flex;
  align-items: center;

  gap: 24px;
}


.socials__line {
  width: 48px;
  height: 1px;

  background: rgba(255, 255, 255, 0.42);
}


.socials a {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  opacity: 0.68;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}


.socials a:hover {
  opacity: 1;

  transform: translateY(-2px);
}


.socials svg {
  display: block;

  width: 18px;
  height: 18px;

  fill: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .site-header {
    grid-template-columns: auto 1fr;
  }


  .main-nav {
    justify-self: end;

    gap: 24px;
  }


  .hero__image {
    background-position: 62% center;
  }


  .hero__veil {
    background:
      linear-gradient(
        90deg,
        rgba(5, 7, 10, 0.97) 0%,
        rgba(5, 7, 10, 0.83) 38%,
        rgba(5, 7, 10, 0.38) 100%
      ),

      linear-gradient(
        180deg,
        rgba(5, 7, 10, 0.75),
        transparent 30%,
        rgba(5, 7, 10, 0.84)
      );
  }


  .hero__content {
    top: 46%;

    left: 8vw;

    width: 84vw;
  }


  .hero h1 {
    font-size: clamp(54px, 10vw, 90px);
  }


  .intro {
    width: min(460px, 75%);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 620px) {

  .hero {
    min-height: 760px;
  }


  .site-header {
    top: 24px;
    left: 22px;
    right: 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;
  }


  .brand {
    font-size: 22px;
  }


  .main-nav {
    position: absolute;

    top: 54px;
    left: 0;

    width: 100%;

    justify-content: space-between;

    gap: 12px;
  }


  .main-nav a {
    font-size: 13px;
  }


  .hero__image {
    background-position: 68% center;

    transform: scale(1.04);
  }


  .hero__veil {
    background:
      linear-gradient(
        90deg,
        rgba(5, 7, 10, 0.96),
        rgba(5, 7, 10, 0.52)
      ),

      linear-gradient(
        180deg,
        rgba(5, 7, 10, 0.86),
        transparent 28%,
        rgba(5, 7, 10, 0.90) 88%
      );
  }


  .hero__content {
    top: 46%;

    left: 22px;

    width: calc(100% - 44px);
  }


  .eyebrow {
    margin-bottom: 20px;

    font-size: 13px;

    gap: 12px;
  }


  .eyebrow::before {
    width: 34px;
  }


  .hero h1 {
    width: 100%;

    font-size: clamp(42px, 11.3vw, 68px);

    white-space: nowrap;

    letter-spacing: -0.065em;
  }


  .intro {
    width: 92%;

    margin-top: 24px;

    font-size: 16px;

    line-height: 1.65;
  }


  .hero__cta {
    margin-top: 28px;

    min-height: 48px;

    padding: 14px 22px;

    font-size: 16px;
  }


  .socials {
    left: 22px;
    bottom: 30px;
  }


  .socials__line {
    width: 34px;
  }

}


/* =========================================
   PROFILE
========================================= */

.profile {
  --bg: #ffffff;
  --text: #080808;
  --muted: rgba(8, 8, 8, 0.48);
  --line: rgba(8, 8, 8, 0.16);

  position: relative;

  width: 100%;

  background: #ffffff;

  color: var(--text);

  padding:
    clamp(100px, 10vw, 160px)
    clamp(28px, 8vw, 128px)
    clamp(54px, 6vw, 90px);

  overflow: hidden;
}


/* =========================================
   PROFILE MAIN CONTAINER
========================================= */

.profile__container {
  width: 100%;

  max-width: 1440px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(250px, 0.7fr)
    minmax(0, 1.65fr);

  gap: clamp(60px, 9vw, 150px);
}


/* =========================================
   PROFILE LEFT SIDE
========================================= */

.profile__heading {
  position: relative;

  min-width: 0;

  padding-right: clamp(32px, 5vw, 70px);

  border-right: 1px solid var(--text);
}


.profile__index {
  display: block;

  margin-bottom: clamp(36px, 5vw, 70px);

  font-size: 13px;

  font-weight: 400;

  letter-spacing: 0.12em;

  color: var(--muted);
}


.profile__heading h2 {
  font-size: clamp(72px, 8vw, 132px);

  font-weight: 300;

  line-height: 0.88;

  letter-spacing: -0.07em;

  color: var(--text);
}


/* =========================================
   PROFILE RIGHT CONTENT
========================================= */

.profile__content {
  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;
}


.profile__label {
  display: block;

  margin-bottom: clamp(28px, 3vw, 42px);

  font-size: 13px;

  font-weight: 500;

  letter-spacing: 0.14em;

  color: var(--muted);
}


/* =========================================
   PROFILE MAIN STATEMENT
========================================= */

.profile__statement {
  max-width: 940px;

  font-size: clamp(27px, 2.65vw, 44px);

  font-weight: 300;

  line-height: 1.42;

  letter-spacing: -0.035em;

  color: var(--text);
}


/* =========================================
   PROFILE INTERACTIVE WORDS
========================================= */

.profile__word {
  position: relative;

  display: inline;

  font-weight: 400;

  cursor: default;

  transition:
    color 0.25s ease;
}


.profile__word::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0.04em;

  width: 100%;

  height: 2px;

  background: var(--text);

  transform: scaleX(0);

  transform-origin: right center;

  transition:
    transform 0.35s cubic-bezier(.2, .75, .2, 1);
}


.profile__word:hover::after {
  transform: scaleX(1);

  transform-origin: left center;
}


/* =========================================
   PROFILE FOOTER
========================================= */

.profile__footer {
  width: 100%;

  max-width: 1440px;

  margin:
    clamp(80px, 10vw, 150px)
    auto
    0;

  padding-top: 24px;

  border-top: 1px solid var(--line);

  display: flex;

  align-items: center;

  gap: clamp(18px, 2.5vw, 40px);
}


.profile__footer > span:not(.profile__footer-line) {
  flex: 0 0 auto;

  font-size: 13px;

  font-weight: 400;

  letter-spacing: 0.10em;

  color: var(--muted);
}


.profile__footer-line {
  flex: 1;

  height: 1px;

  background: var(--line);

  transition:
    background-color 0.3s ease,
    flex-grow 0.4s ease;
}


.profile__footer:hover .profile__footer-line {
  background: rgba(8, 8, 8, 0.40);
}


/* =========================================
   PROFILE DESKTOP HOVER
========================================= */

@media (hover: hover) and (pointer: fine) {

  .profile__statement:has(.profile__word:hover)
  .profile__word:not(:hover) {
    color: rgba(8, 8, 8, 0.38);
  }


  .profile__word:hover {
    color: #000000;
  }

}


/* =========================================
   PROFILE TABLET
========================================= */

@media (max-width: 960px) {

  .profile {
    padding:
      96px
      8vw
      64px;
  }


  .profile__container {
    grid-template-columns: 1fr;

    gap: 58px;
  }


  .profile__heading {
    padding-right: 0;

    padding-bottom: 48px;

    border-right: none;

    border-bottom: 1px solid var(--text);
  }


  .profile__index {
    margin-bottom: 28px;
  }


  .profile__heading h2 {
    font-size: clamp(76px, 14vw, 120px);
  }


  .profile__content {
    max-width: 900px;
  }


  .profile__statement {
    font-size: clamp(28px, 4vw, 40px);
  }


  .profile__footer {
    flex-wrap: wrap;

    row-gap: 16px;
  }

}


/* =========================================
   PROFILE MOBILE
========================================= */

@media (max-width: 620px) {

  .profile {
    padding:
      76px
      22px
      42px;
  }


  .profile__container {
    gap: 42px;
  }


  .profile__heading {
    padding-bottom: 34px;
  }


  .profile__index {
    margin-bottom: 22px;

    font-size: 13px;
  }


  .profile__heading h2 {
    font-size: clamp(60px, 20vw, 88px);
  }


  .profile__label {
    margin-bottom: 24px;

    font-size: 13px;
  }


  .profile__statement {
    width: 100%;

    font-size: clamp(25px, 7.4vw, 32px);

    line-height: 1.42;

    letter-spacing: -0.035em;
  }


  .profile__word::after {
    height: 1px;

    transform: scaleX(1);

    opacity: 0.22;
  }


  .profile__footer {
    margin-top: 72px;

    padding-top: 20px;

    display: grid;

    grid-template-columns:
      repeat(2, 1fr);

    gap: 18px;
  }


  .profile__footer-line {
    display: none;
  }


  .profile__footer > span:not(.profile__footer-line) {
    font-size: 13px;
  }

}


/* =========================================
   REAXIUM PROJECT
========================================= */

.reaxium-project {
  --rx-bg: #050505;
  --rx-white: #ffffff;
  --rx-text: rgba(255, 255, 255, 0.96);
  --rx-copy: rgba(255, 255, 255, 0.66);
  --rx-muted: rgba(255, 255, 255, 0.42);
  --rx-line: rgba(255, 255, 255, 0.14);
  --rx-turquoise: #61d8d3;
  --rx-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  min-height: 820px;

  overflow: hidden;

  background: var(--rx-bg);

  color: var(--rx-text);

  font-family: var(--rx-font);
}


.reaxium-project img {
  display: block;

  width: 100%;
}


/* =========================================
   REAXIUM LEFT CONTENT
========================================= */

.reaxium-project__content {
  position: relative;

  z-index: 3;

  width: min(36vw, 560px);

  margin-left:
    clamp(34px, 9.5vw, 165px);

  padding-top:
    clamp(120px, 11vw, 180px);
}


/* =========================================
   REAXIUM BRAND
========================================= */

.reaxium-project__brand {
  display: block;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  color: var(--rx-turquoise);
}


/* =========================================
   REAXIUM TITLE
========================================= */

.reaxium-project__heading h2 {
  font-size:
    clamp(56px, 5.2vw, 84px);

  font-weight: 300;

  line-height: 0.95;

  letter-spacing: -0.065em;

  color: var(--rx-white);
}


/* =========================================
   REAXIUM DESCRIPTION
========================================= */

.reaxium-project__description {
  width: 100%;

  max-width: 540px;

  margin-top: 36px;
}


.reaxium-project__description p {
  font-size: 16px;

  font-weight: 300;

  line-height: 1.75;

  letter-spacing: -0.01em;

  color: var(--rx-copy);
}


.reaxium-project__description p + p {
  margin-top: 22px;
}


/* =========================================
   REAXIUM PROJECT META
========================================= */

.reaxium-project__meta {
  width: 100%;

  max-width: 540px;

  margin-top: 48px;

  padding-top: 24px;

  display: grid;

  grid-template-columns:
    1.25fr
    0.8fr
    1fr;

  gap: 26px;

  border-top:
    1px solid
    var(--rx-line);
}


.reaxium-project__meta-item {
  min-width: 0;
}


.reaxium-project__meta-label,
.reaxium-project__meta-value {
  display: block;
}


.reaxium-project__meta-label {
  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  color: var(--rx-muted);
}


.reaxium-project__meta-value {
  font-size: 13px;

  font-weight: 400;

  line-height: 1.55;

  color: var(--rx-white);
}


/* =========================================
   REAXIUM RIGHT VISUAL
========================================= */

.reaxium-project__visual {
  position: absolute;

  top: 66px;

  right: 0;

  width: 55vw;

  height:
    clamp(560px, 44vw, 675px);

  z-index: 2;
}


/* =========================================
   REAXIUM MEDIA
========================================= */

.reaxium-project__media {
  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  border-radius:
    18px
    0
    0
    18px;

  background: #0b0d0f;
}


.reaxium-project__media img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  transition:
    transform
    0.9s
    cubic-bezier(.2, .7, .2, 1);
}


.reaxium-project__media::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.18) 0%,
      transparent 18%
    );
}


@media (hover: hover) and (pointer: fine) {

  .reaxium-project__media:hover img {
    transform:
      scale(1.035);
  }

}


/* =========================================
   REAXIUM CAPTION
========================================= */

.reaxium-project__caption {
  position: absolute;

  right: 0;

  bottom: 56px;

  width: 55vw;

  padding-left: 0;

  padding-right:
    clamp(28px, 5vw, 80px);

  display: flex;

  align-items: center;

  gap: 18px;
}


.reaxium-project__caption span {
  flex: 0 0 auto;

  font-size: 13px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.07em;

  color:
    rgba(255, 255, 255, 0.34);
}


.reaxium-project__caption-line {
  flex: 1 !important;

  height: 1px;

  background:
    rgba(255, 255, 255, 0.13);
}


/* =========================================
   REAXIUM LARGE DESKTOP
========================================= */

@media (min-width: 1500px) {

  .reaxium-project {
    min-height: 860px;
  }


  .reaxium-project__content {
    width: 540px;
  }


  .reaxium-project__visual {
    width: 55vw;

    max-width: 1050px;
  }


  .reaxium-project__caption {
    width: 55vw;

    max-width: 1050px;
  }

}


/* =========================================
   REAXIUM LAPTOP
========================================= */

@media (max-width: 1180px) {

  .reaxium-project {
    min-height: auto;

    padding:
      100px
      0
      80px;
  }


  .reaxium-project__content {
    width:
      min(42vw, 480px);

    margin-left:
      clamp(32px, 6vw, 80px);

    padding-top: 0;
  }


  .reaxium-project__heading h2 {
    font-size:
      clamp(52px, 5.5vw, 70px);
  }


  .reaxium-project__description {
    max-width: 460px;
  }


  .reaxium-project__visual {
    top: 86px;

    width: 51vw;

    height: 590px;
  }


  .reaxium-project__caption {
    position: relative;

    right: auto;

    bottom: auto;

    width: 51vw;

    margin-top: 62px;

    margin-left: auto;

    padding-right: 34px;
  }

}


/* =========================================
   REAXIUM TABLET
========================================= */

@media (max-width: 900px) {

  .reaxium-project {
    padding:
      90px
      7vw
      80px;
  }


  .reaxium-project__content {
    width: 100%;

    max-width: 720px;

    margin-left: 0;
  }


  .reaxium-project__heading h2 {
    font-size:
      clamp(58px, 10vw, 82px);
  }


  .reaxium-project__description {
    max-width: 650px;
  }


  .reaxium-project__meta {
    max-width: 650px;
  }


  .reaxium-project__visual {
    position: relative;

    top: auto;

    right: auto;

    width:
      calc(100% + 7vw);

    height: auto;

    margin-top: 70px;

    margin-right: -7vw;
  }


  .reaxium-project__media {
    width: 100%;

    aspect-ratio: 1.4 / 1;

    border-radius:
      16px
      0
      0
      16px;
  }


  .reaxium-project__caption {
    position: relative;

    width: 100%;

    margin-top: 20px;

    padding-right: 0;
  }

}


/* =========================================
   REAXIUM MOBILE
========================================= */

@media (max-width: 620px) {

  .reaxium-project {
    padding:
      76px
      22px
      64px;
  }


  .reaxium-project__heading h2 {
    font-size:
      clamp(50px, 15vw, 68px);
  }


  .reaxium-project__description {
    margin-top: 28px;
  }


  .reaxium-project__description p {
    font-size: 16px;

    line-height: 1.7;
  }


  .reaxium-project__description p + p {
    margin-top: 20px;
  }


  .reaxium-project__meta {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 18px;
  }


  .reaxium-project__visual {
    width:
      calc(100% + 22px);

    margin-top: 52px;

    margin-right: -22px;
  }


  .reaxium-project__media {
    aspect-ratio: 1 / 1;

    border-radius:
      12px
      0
      0
      12px;
  }


  .reaxium-project__media img {
    object-position: center;
  }


  .reaxium-project__caption {
    margin-top: 18px;

    gap: 12px;
  }


  .reaxium-project__caption-line {
    display: none;
  }


  .reaxium-project__caption span:last-child {
    margin-left: auto;
  }

}


/* =========================================
   REAXIUM VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .reaxium-project__caption {
    flex-direction: column;

    align-items: flex-start;
  }


  .reaxium-project__caption span:last-child {
    margin-left: 0;
  }

}


/* =========================================
   ZKTECO PROJECT
========================================= */

.zkteco-project {
  --zk-bg: #050505;
  --zk-white: #ffffff;
  --zk-text: rgba(255, 255, 255, 0.96);
  --zk-copy: rgba(255, 255, 255, 0.66);
  --zk-muted: rgba(255, 255, 255, 0.42);
  --zk-line: rgba(255, 255, 255, 0.14);
  --zk-turquoise: #61d8d3;
  --zk-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  min-height: 820px;

  overflow: hidden;

  background: var(--zk-bg);

  color: var(--zk-text);

  font-family: var(--zk-font);
}


.zkteco-project img {
  display: block;
}


/* =========================================
   ZKTECO LEFT CONTENT
========================================= */

.zkteco-project__content {
  position: relative;

  z-index: 3;

  width: min(36vw, 560px);

  margin-left:
    clamp(34px, 9.5vw, 165px);

  padding-top:
    clamp(120px, 11vw, 180px);
}


/* =========================================
   ZKTECO BRAND
========================================= */

.zkteco-project__brand {
  display: block;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  color: var(--zk-turquoise);
}


/* =========================================
   ZKTECO TITLE
========================================= */

.zkteco-project__heading h2 {
  font-size:
    clamp(56px, 5.2vw, 84px);

  font-weight: 300;

  line-height: 0.95;

  letter-spacing: -0.065em;

  color: var(--zk-white);
}


/* =========================================
   ZKTECO DESCRIPTION
========================================= */

.zkteco-project__description {
  width: 100%;

  max-width: 540px;

  margin-top: 36px;
}


.zkteco-project__description p {
  font-size: 16px;

  font-weight: 300;

  line-height: 1.75;

  letter-spacing: -0.01em;

  color: var(--zk-copy);
}


.zkteco-project__description p + p {
  margin-top: 22px;
}


/* =========================================
   ZKTECO PROJECT META
========================================= */

.zkteco-project__meta {
  width: 100%;

  max-width: 540px;

  margin-top: 48px;

  padding-top: 24px;

  display: grid;

  grid-template-columns:
    1.1fr
    0.8fr
    1.3fr;

  gap: 26px;

  border-top:
    1px solid
    var(--zk-line);
}


.zkteco-project__meta-item {
  min-width: 0;
}


.zkteco-project__meta-label,
.zkteco-project__meta-value {
  display: block;
}


.zkteco-project__meta-label {
  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  color: var(--zk-muted);
}


.zkteco-project__meta-value {
  font-size: 13px;

  font-weight: 400;

  line-height: 1.55;

  color: var(--zk-white);
}


/* =========================================
   ZKTECO RIGHT VISUAL
========================================= */

.zkteco-project__visual {
  position: absolute;

  top: 66px;

  right: 0;

  width: 55vw;

  height:
    clamp(560px, 44vw, 675px);

  z-index: 2;
}


/* =========================================
   ZKTECO MEDIA
========================================= */

.zkteco-project__media {
  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  border-radius:
    18px
    0
    0
    18px;

  background: #0b0d0f;
}


/* =========================================
   ZKTECO MAIN PHOTO
========================================= */

.zkteco-project__photo {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  filter:
    brightness(0.88)
    contrast(0.96);

  transition:
    transform
    0.9s
    cubic-bezier(.2, .7, .2, 1),

    filter
    0.6s
    ease;
}


/* =========================================
   ZKTECO IMAGE TREATMENT
========================================= */

.zkteco-project__media::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.22) 0%,
      rgba(5, 5, 5, 0.04) 20%,
      transparent 36%
    ),

    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.05),
      transparent 26%,
      transparent 72%,
      rgba(5, 5, 5, 0.12)
    );
}


/* =========================================
   ZKTECO REAL LOGO
========================================= */

.zkteco-project__logo {
  position: absolute;

  top: 30px;

  left: 32px;

  z-index: 5;

  width:
    clamp(145px, 11vw, 185px);

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0
      4px
      16px
      rgba(0, 0, 0, 0.30)
    );

  transition:
    transform
    0.35s
    ease;
}


@media (hover: hover) and (pointer: fine) {

  .zkteco-project__media:hover
  .zkteco-project__photo {
    transform:
      scale(1.035);

    filter:
      brightness(0.94)
      contrast(1);
  }


  .zkteco-project__media:hover
  .zkteco-project__logo {
    transform:
      translateY(-2px);
  }

}


/* =========================================
   ZKTECO CAPTION
========================================= */

.zkteco-project__caption {
  position: absolute;

  right: 0;

  bottom: 56px;

  width: 55vw;

  padding-right:
    clamp(28px, 5vw, 80px);

  display: flex;

  align-items: center;

  gap: 18px;
}


.zkteco-project__caption span {
  flex: 0 0 auto;

  font-size: 13px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.07em;

  color:
    rgba(255, 255, 255, 0.34);
}


.zkteco-project__caption-line {
  flex: 1 !important;

  height: 1px;

  background:
    rgba(255, 255, 255, 0.13);
}


/* =========================================
   ZKTECO LARGE DESKTOP
========================================= */

@media (min-width: 1500px) {

  .zkteco-project {
    min-height: 860px;
  }


  .zkteco-project__content {
    width: 540px;
  }


  .zkteco-project__visual {
    width: 55vw;

    max-width: 1050px;
  }


  .zkteco-project__caption {
    width: 55vw;

    max-width: 1050px;
  }

}


/* =========================================
   ZKTECO LAPTOP
========================================= */

@media (max-width: 1180px) {

  .zkteco-project {
    min-height: auto;

    padding:
      100px
      0
      80px;
  }


  .zkteco-project__content {
    width:
      min(42vw, 480px);

    margin-left:
      clamp(32px, 6vw, 80px);

    padding-top: 0;
  }


  .zkteco-project__heading h2 {
    font-size:
      clamp(52px, 5.5vw, 70px);
  }


  .zkteco-project__description {
    max-width: 460px;
  }


  .zkteco-project__visual {
    top: 86px;

    width: 51vw;

    height: 590px;
  }


  .zkteco-project__logo {
    top: 24px;

    left: 26px;

    width: 145px;
  }


  .zkteco-project__caption {
    position: relative;

    right: auto;

    bottom: auto;

    width: 51vw;

    margin-top: 62px;

    margin-left: auto;

    padding-right: 34px;
  }

}


/* =========================================
   ZKTECO TABLET
========================================= */

@media (max-width: 900px) {

  .zkteco-project {
    padding:
      90px
      7vw
      80px;
  }


  .zkteco-project__content {
    width: 100%;

    max-width: 720px;

    margin-left: 0;
  }


  .zkteco-project__heading h2 {
    font-size:
      clamp(58px, 10vw, 82px);
  }


  .zkteco-project__description {
    max-width: 650px;
  }


  .zkteco-project__meta {
    max-width: 650px;
  }


  .zkteco-project__visual {
    position: relative;

    top: auto;

    right: auto;

    width:
      calc(100% + 7vw);

    height: auto;

    margin-top: 70px;

    margin-right: -7vw;
  }


  .zkteco-project__media {
    width: 100%;

    aspect-ratio: 1.4 / 1;

    border-radius:
      16px
      0
      0
      16px;
  }


  .zkteco-project__caption {
    position: relative;

    width: 100%;

    margin-top: 20px;

    padding-right: 0;
  }

}


/* =========================================
   ZKTECO MOBILE
========================================= */

@media (max-width: 620px) {

  .zkteco-project {
    padding:
      76px
      22px
      64px;
  }


  .zkteco-project__heading h2 {
    font-size:
      clamp(50px, 15vw, 68px);
  }


  .zkteco-project__description {
    margin-top: 28px;
  }


  .zkteco-project__description p {
    font-size: 16px;

    line-height: 1.7;
  }


  .zkteco-project__description p + p {
    margin-top: 20px;
  }


  .zkteco-project__meta {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 18px;
  }


  .zkteco-project__visual {
    width:
      calc(100% + 22px);

    margin-top: 52px;

    margin-right: -22px;
  }


  .zkteco-project__media {
    aspect-ratio: 1 / 1;

    border-radius:
      12px
      0
      0
      12px;
  }


  .zkteco-project__photo {
    object-position: 58% center;
  }


  .zkteco-project__logo {
    top: 20px;

    left: 20px;

    width: 120px;
  }


  .zkteco-project__caption {
    margin-top: 18px;

    gap: 12px;
  }


  .zkteco-project__caption-line {
    display: none;
  }


  .zkteco-project__caption span:last-child {
    margin-left: auto;
  }

}


/* =========================================
   ZKTECO VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .zkteco-project__caption {
    flex-direction: column;

    align-items: flex-start;
  }


  .zkteco-project__caption span:last-child {
    margin-left: 0;
  }

}


/* =========================================
   MABE PROJECT
========================================= */

.mabe-project {
  --mabe-bg: #ffffff;
  --mabe-text: #0a0a0a;
  --mabe-copy: rgba(10, 10, 10, 0.62);
  --mabe-muted: rgba(10, 10, 10, 0.44);
  --mabe-line: rgba(10, 10, 10, 0.12);
  --mabe-card: #f6f6f4;
  --mabe-card-hover: #101010;
  --mabe-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  overflow: hidden;

  padding:
    clamp(100px, 9vw, 150px)
    clamp(28px, 7vw, 110px)
    clamp(110px, 9vw, 150px);

  background: var(--mabe-bg);

  color: var(--mabe-text);

  font-family: var(--mabe-font);
}


.mabe-project img {
  display: block;
  max-width: 100%;
}


/* =========================================
   MABE CONTAINER
========================================= */

.mabe-project__container {
  width: 100%;

  max-width: 1280px;

  margin: 0 auto;
}


/* =========================================
   MABE HEADER
========================================= */

.mabe-project__header {
  width: 100%;

  max-width: 980px;

  margin:
    0
    auto
    clamp(72px, 7vw, 108px);

  text-align: center;
}


/* =========================================
   MABE EYEBROW
========================================= */

.mabe-project__eyebrow {
  display: block;

  margin-bottom: 14px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--mabe-muted);
}


/* =========================================
   MABE BRAND
========================================= */

.mabe-project__brand {
  display: block;

  margin-bottom: 22px;

  font-size:
    clamp(30px, 2.6vw, 40px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.24em;

  color: #0a0a0a;
}


/* =========================================
   MABE TITLE
========================================= */

.mabe-project__header h2 {
  font-size:
    clamp(48px, 5.3vw, 78px);

  font-weight: 300;

  line-height: 1.05;

  letter-spacing: -0.055em;

  color: var(--mabe-text);
}


.mabe-project__header h2 span {
  display: block;
}


/* =========================================
   MABE MAIN GRID
========================================= */

.mabe-project__grid {
  display: grid;

  grid-template-columns:
    minmax(370px, 0.95fr)
    minmax(0, 1.45fr);

  gap: 28px;

  align-items: stretch;
}


/* =========================================
   MABE IMAGE / VISUAL
========================================= */

.mabe-project__visual {
  position: relative;

  min-width: 0;

  min-height: 700px;

  overflow: hidden;

  border-radius: 24px;

  background: #111111;
}


/* =========================================
   MABE PHOTO
========================================= */

.mabe-project__photo {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  transition:
    transform
    0.8s
    cubic-bezier(.2, .7, .2, 1);
}


/* =========================================
   MABE DATA OVERLAY

   data-overlay-dark="6"
   = overlay negro uniforme 60%
========================================= */

.mabe-project__visual[data-overlay-dark="6"]::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    rgba(0, 0, 0, 0.60);
}


/* =========================================
   CENTERED MABE LOGO
========================================= */

.mabe-project__visual-logo {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 4;

  width:
    min(64%, 300px);

  height: auto;

  object-fit: contain;

  transform:
    translate(-50%, -50%);

  filter:
    drop-shadow(
      0
      8px
      22px
      rgba(0, 0, 0, 0.22)
    );

  transition:
    transform
    0.45s
    cubic-bezier(.2, .7, .2, 1);
}


/* =========================================
   MABE IMAGE CAPTION
========================================= */

.mabe-project__visual-caption {
  position: absolute;

  left: 26px;
  right: 26px;
  bottom: 24px;

  z-index: 5;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.mabe-project__visual-caption span {
  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  letter-spacing: 0.08em;

  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================================
   MABE IMAGE INTERACTION
========================================= */

@media (hover: hover) and (pointer: fine) {

  .mabe-project__visual:hover
  .mabe-project__photo {
    transform: scale(1.04);
  }


  .mabe-project__visual:hover
  .mabe-project__visual-logo {
    transform:
      translate(-50%, -50%)
      scale(1.035);
  }

}


/* =========================================
   MABE FEATURES GRID
========================================= */

.mabe-project__cards {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;
}


/* =========================================
   MABE CARD
========================================= */

.mabe-card {
  position: relative;

  min-height: 336px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  padding:
    38px
    38px
    34px;

  border:
    1px
    solid
    var(--mabe-line);

  border-radius: 24px;

  background:
    var(--mabe-card);

  transition:
    background-color
    0.35s
    ease,
    transform
    0.35s
    ease,
    border-color
    0.35s
    ease;
}


/* =========================================
   MABE CARD NUMBER
========================================= */

.mabe-card__number {
  width: 66px;
  height: 66px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  border:
    1px
    solid
    rgba(10, 10, 10, 0.10);

  border-radius: 50%;

  background: #ffffff;

  font-size: 13px;

  font-weight: 500;

  color: var(--mabe-text);

  transition:
    background-color
    0.35s
    ease,
    color
    0.35s
    ease,
    border-color
    0.35s
    ease;
}


/* =========================================
   MABE CARD CONTENT
========================================= */

.mabe-card__content {
  margin-top: auto;

  padding-top: 52px;
}


/* =========================================
   MABE CARD TITLE
========================================= */

.mabe-card h3 {
  max-width: 300px;

  font-size:
    clamp(25px, 2vw, 32px);

  font-weight: 400;

  line-height: 1.18;

  letter-spacing: -0.035em;

  color: var(--mabe-text);

  transition:
    color
    0.35s
    ease;
}


/* =========================================
   MABE CARD COPY
========================================= */

.mabe-card p {
  max-width: 300px;

  margin-top: 17px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.65;

  color: var(--mabe-copy);

  transition:
    color
    0.35s
    ease;
}


/* =========================================
   MABE CARD ARROW
========================================= */

.mabe-card__arrow {
  position: absolute;

  top: 40px;
  right: 38px;

  font-size: 18px;

  font-weight: 400;

  color: var(--mabe-muted);

  opacity: 0;

  transform:
    translate(-5px, 5px);

  transition:
    opacity
    0.3s
    ease,
    transform
    0.3s
    ease,
    color
    0.3s
    ease;
}


/* =========================================
   MABE CARD INTERACTION
========================================= */

@media (hover: hover) and (pointer: fine) {

  .mabe-card:hover {
    background: var(--mabe-card-hover);

    border-color:
      var(--mabe-card-hover);

    transform:
      translateY(-5px);
  }


  .mabe-card:hover
  .mabe-card__number {
    background:
      rgba(255, 255, 255, 0.08);

    border-color:
      rgba(255, 255, 255, 0.16);

    color: #ffffff;
  }


  .mabe-card:hover h3 {
    color: #ffffff;
  }


  .mabe-card:hover p {
    color:
      rgba(255, 255, 255, 0.64);
  }


  .mabe-card:hover
  .mabe-card__arrow {
    opacity: 1;

    color: #ffffff;

    transform:
      translate(0, 0);
  }

}


/* =========================================
   MABE LAPTOP
========================================= */

@media (max-width: 1180px) {

  .mabe-project__grid {
    grid-template-columns:
      minmax(310px, 0.86fr)
      minmax(0, 1.14fr);
  }


  .mabe-project__visual {
    min-height: 650px;
  }


  .mabe-card {
    min-height: 310px;

    padding: 30px;
  }


  .mabe-card__content {
    padding-top: 42px;
  }


  .mabe-card__arrow {
    top: 32px;
    right: 30px;
  }

}


/* =========================================
   MABE TABLET
========================================= */

@media (max-width: 920px) {

  .mabe-project {
    padding:
      90px
      7vw
      100px;
  }


  .mabe-project__header {
    margin-bottom: 64px;
  }


  .mabe-project__grid {
    grid-template-columns: 1fr;
  }


  .mabe-project__visual {
    width: 100%;

    min-height: 620px;

    aspect-ratio: auto;
  }


  .mabe-project__visual-logo {
    width:
      min(50%, 280px);
  }


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

}


/* =========================================
   MABE MOBILE
========================================= */

@media (max-width: 620px) {

  .mabe-project {
    padding:
      76px
      22px
      80px;
  }


  .mabe-project__header {
    margin-bottom: 48px;

    text-align: left;
  }


  .mabe-project__eyebrow {
    margin-bottom: 12px;
  }


  .mabe-project__brand {
    margin-bottom: 16px;

    font-size:
      clamp(26px, 8vw, 34px);

    letter-spacing: 0.18em;
  }


  .mabe-project__header h2 {
    font-size:
      clamp(44px, 12vw, 60px);
  }


  .mabe-project__visual {
    min-height: 540px;

    border-radius: 18px;
  }


  .mabe-project__photo {
    object-position:
      54%
      center;
  }


  .mabe-project__visual-logo {
    width:
      min(58%, 230px);
  }


  .mabe-project__visual-caption {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }


  .mabe-project__visual-caption span {
    font-size: 13px;
  }


  .mabe-project__cards {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .mabe-card {
    min-height: 250px;

    padding: 28px;

    border-radius: 18px;
  }


  .mabe-card__number {
    width: 58px;
    height: 58px;
  }


  .mabe-card__content {
    padding-top: 38px;
  }


  .mabe-card h3 {
    font-size: 26px;
  }


  .mabe-card p {
    font-size: 16px;
  }


  .mabe-card__arrow {
    display: none;
  }

}


/* =========================================
   MABE VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .mabe-project__visual-caption {
    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }

}


/* =========================================
   EDESUR PROJECT
========================================= */

.edesur-project {
  --edesur-bg: #050505;
  --edesur-white: #ffffff;
  --edesur-text: rgba(255, 255, 255, 0.96);
  --edesur-copy: rgba(255, 255, 255, 0.66);
  --edesur-muted: rgba(255, 255, 255, 0.42);
  --edesur-line: rgba(255, 255, 255, 0.14);
  --edesur-turquoise: #61d8d3;
  --edesur-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  min-height: 820px;

  overflow: hidden;

  background: var(--edesur-bg);

  color: var(--edesur-text);

  font-family: var(--edesur-font);
}


.edesur-project img {
  display: block;
  max-width: 100%;
}


/* =========================================
   EDESUR LEFT CONTENT
========================================= */

.edesur-project__content {
  position: relative;

  z-index: 3;

  width: min(36vw, 560px);

  margin-left:
    clamp(34px, 9.5vw, 165px);

  padding-top:
    clamp(120px, 11vw, 180px);
}


/* =========================================
   EDESUR BRAND
========================================= */

.edesur-project__brand {
  display: block;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  color: var(--edesur-turquoise);

  text-transform: uppercase;
}


/* =========================================
   EDESUR TITLE
========================================= */

.edesur-project__heading h2 {
  font-size:
    clamp(52px, 4.9vw, 78px);

  font-weight: 300;

  line-height: 0.98;

  letter-spacing: -0.06em;

  color: var(--edesur-white);
}


/* =========================================
   EDESUR DESCRIPTION
========================================= */

.edesur-project__description {
  width: 100%;

  max-width: 540px;

  margin-top: 36px;
}


.edesur-project__description p {
  font-size: 16px;

  font-weight: 300;

  line-height: 1.75;

  letter-spacing: -0.01em;

  color: var(--edesur-copy);
}


.edesur-project__description p + p {
  margin-top: 22px;
}


/* =========================================
   EDESUR META
========================================= */

.edesur-project__meta {
  width: 100%;

  max-width: 540px;

  margin-top: 48px;

  padding-top: 24px;

  display: grid;

  grid-template-columns:
    1.25fr
    0.55fr
    1.2fr;

  gap: 26px;

  border-top:
    1px solid
    var(--edesur-line);
}


.edesur-project__meta-item {
  min-width: 0;
}


.edesur-project__meta-label,
.edesur-project__meta-value {
  display: block;
}


.edesur-project__meta-label {
  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  color: var(--edesur-muted);
}


.edesur-project__meta-value {
  font-size: 13px;

  font-weight: 400;

  line-height: 1.55;

  color: var(--edesur-white);
}


/* =========================================
   EDESUR RIGHT VISUAL
========================================= */

.edesur-project__visual {
  position: absolute;

  top: 66px;

  right: 0;

  width: 55vw;

  height:
    clamp(560px, 44vw, 675px);

  z-index: 2;
}


/* =========================================
   EDESUR MEDIA
========================================= */

.edesur-project__media {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius:
    18px
    0
    0
    18px;

  background: #0b0d0f;
}


/* =========================================
   EDESUR PHOTO
========================================= */

.edesur-project__photo {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  filter:
    brightness(0.88)
    contrast(0.97);

  transition:
    transform
    0.9s
    cubic-bezier(.2, .7, .2, 1),

    filter
    0.6s
    ease;
}


/* =========================================
   EDESUR IMAGE TREATMENT
========================================= */

.edesur-project__media::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.20) 0%,
      rgba(5, 5, 5, 0.04) 20%,
      transparent 36%
    ),

    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.05),
      transparent 26%,
      transparent 72%,
      rgba(5, 5, 5, 0.12)
    );
}


/* =========================================
   EDESUR IMAGE INTERACTION
========================================= */

@media (hover: hover) and (pointer: fine) {

  .edesur-project__media:hover
  .edesur-project__photo {
    transform: scale(1.035);

    filter:
      brightness(0.94)
      contrast(1);
  }

}


/* =========================================
   EDESUR CAPTION
========================================= */

.edesur-project__caption {
  position: absolute;

  right: 0;

  bottom: 56px;

  width: 55vw;

  padding-right:
    clamp(28px, 5vw, 80px);

  display: flex;

  align-items: center;

  gap: 18px;
}


.edesur-project__caption span {
  flex: 0 0 auto;

  font-size: 13px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.07em;

  color:
    rgba(255, 255, 255, 0.34);
}


.edesur-project__caption-line {
  flex: 1 !important;

  height: 1px;

  background:
    rgba(255, 255, 255, 0.13);
}


/* =========================================
   EDESUR LARGE DESKTOP
========================================= */

@media (min-width: 1500px) {

  .edesur-project {
    min-height: 860px;
  }


  .edesur-project__content {
    width: 540px;
  }


  .edesur-project__visual {
    width: 55vw;

    max-width: 1050px;
  }


  .edesur-project__caption {
    width: 55vw;

    max-width: 1050px;
  }

}


/* =========================================
   EDESUR LAPTOP
========================================= */

@media (max-width: 1180px) {

  .edesur-project {
    min-height: auto;

    padding:
      100px
      0
      80px;
  }


  .edesur-project__content {
    width:
      min(42vw, 480px);

    margin-left:
      clamp(32px, 6vw, 80px);

    padding-top: 0;
  }


  .edesur-project__heading h2 {
    font-size:
      clamp(48px, 5.2vw, 68px);
  }


  .edesur-project__description {
    max-width: 460px;
  }


  .edesur-project__visual {
    top: 86px;

    width: 51vw;

    height: 590px;
  }


  .edesur-project__caption {
    position: relative;

    right: auto;
    bottom: auto;

    width: 51vw;

    margin-top: 62px;
    margin-left: auto;

    padding-right: 34px;
  }

}


/* =========================================
   EDESUR TABLET
========================================= */

@media (max-width: 900px) {

  .edesur-project {
    padding:
      90px
      7vw
      80px;
  }


  .edesur-project__content {
    width: 100%;

    max-width: 720px;

    margin-left: 0;
  }


  .edesur-project__heading h2 {
    font-size:
      clamp(54px, 9vw, 78px);
  }


  .edesur-project__description {
    max-width: 650px;
  }


  .edesur-project__meta {
    max-width: 650px;
  }


  .edesur-project__visual {
    position: relative;

    top: auto;
    right: auto;

    width:
      calc(100% + 7vw);

    height: auto;

    margin-top: 70px;

    margin-right: -7vw;
  }


  .edesur-project__media {
    width: 100%;

    aspect-ratio: 1.4 / 1;

    border-radius:
      16px
      0
      0
      16px;
  }


  .edesur-project__caption {
    position: relative;

    width: 100%;

    margin-top: 20px;

    padding-right: 0;
  }

}


/* =========================================
   EDESUR MOBILE
========================================= */

@media (max-width: 620px) {

  .edesur-project {
    padding:
      76px
      22px
      64px;
  }


  .edesur-project__heading h2 {
    font-size:
      clamp(46px, 13vw, 62px);
  }


  .edesur-project__description {
    margin-top: 28px;
  }


  .edesur-project__description p {
    font-size: 16px;

    line-height: 1.7;
  }


  .edesur-project__description p + p {
    margin-top: 20px;
  }


  .edesur-project__meta {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 18px;
  }


  .edesur-project__visual {
    width:
      calc(100% + 22px);

    margin-top: 52px;

    margin-right: -22px;
  }


  .edesur-project__media {
    aspect-ratio: 1 / 1;

    border-radius:
      12px
      0
      0
      12px;
  }


  .edesur-project__photo {
    object-position: center;
  }


  .edesur-project__caption {
    margin-top: 18px;

    gap: 12px;
  }


  .edesur-project__caption-line {
    display: none;
  }


  .edesur-project__caption span:last-child {
    margin-left: auto;
  }

}


/* =========================================
   EDESUR VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .edesur-project__caption {
    flex-direction: column;

    align-items: flex-start;
  }


  .edesur-project__caption span:last-child {
    margin-left: 0;
  }

}


/* =========================================
   MULTIPLICA PROJECT
========================================= */

.multiplica-project {
  --mi-bg: #050505;
  --mi-white: #ffffff;
  --mi-text: rgba(255, 255, 255, 0.96);
  --mi-copy: rgba(255, 255, 255, 0.66);
  --mi-muted: rgba(255, 255, 255, 0.42);
  --mi-line: rgba(255, 255, 255, 0.14);
  --mi-turquoise: #61d8d3;
  --mi-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  min-height: 820px;

  overflow: hidden;

  background: var(--mi-bg);

  color: var(--mi-text);

  font-family: var(--mi-font);
}


.multiplica-project img {
  display: block;
  max-width: 100%;
}


/* =========================================
   MULTIPLICA LEFT CONTENT
========================================= */

.multiplica-project__content {
  position: relative;

  z-index: 3;

  width: min(36vw, 560px);

  margin-left:
    clamp(34px, 9.5vw, 165px);

  padding-top:
    clamp(120px, 11vw, 180px);
}


/* =========================================
   MULTIPLICA BRAND
========================================= */

.multiplica-project__brand {
  display: block;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  color: var(--mi-turquoise);
}


/* =========================================
   MULTIPLICA TITLE
========================================= */

.multiplica-project__heading h2 {
  font-size:
    clamp(52px, 4.9vw, 78px);

  font-weight: 300;

  line-height: 0.98;

  letter-spacing: -0.06em;

  color: var(--mi-white);
}


/* =========================================
   MULTIPLICA DESCRIPTION
========================================= */

.multiplica-project__description {
  width: 100%;

  max-width: 540px;

  margin-top: 36px;
}


.multiplica-project__description p {
  font-size: 16px;

  font-weight: 300;

  line-height: 1.75;

  letter-spacing: -0.01em;

  color: var(--mi-copy);
}


.multiplica-project__description p + p {
  margin-top: 22px;
}


/* =========================================
   MULTIPLICA PROJECT META
========================================= */

.multiplica-project__meta {
  width: 100%;

  max-width: 540px;

  margin-top: 48px;

  padding-top: 24px;

  display: grid;

  grid-template-columns:
    1.25fr
    0.55fr
    1.2fr;

  gap: 26px;

  border-top:
    1px solid
    var(--mi-line);
}


.multiplica-project__meta-item {
  min-width: 0;
}


.multiplica-project__meta-label,
.multiplica-project__meta-value {
  display: block;
}


.multiplica-project__meta-label {
  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  color: var(--mi-muted);
}


.multiplica-project__meta-value {
  font-size: 13px;

  font-weight: 400;

  line-height: 1.55;

  color: var(--mi-white);
}


/* =========================================
   MULTIPLICA RIGHT VISUAL
========================================= */

.multiplica-project__visual {
  position: absolute;

  top: 66px;

  right: 0;

  width: 55vw;

  height:
    clamp(560px, 44vw, 675px);

  z-index: 2;
}


/* =========================================
   MULTIPLICA MEDIA
========================================= */

.multiplica-project__media {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius:
    18px
    0
    0
    18px;

  background: #0b0d0f;
}


/* =========================================
   MULTIPLICA IMAGE
========================================= */

.multiplica-project__photo {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  filter:
    brightness(0.88)
    contrast(0.96);

  transition:
    transform
    0.9s
    cubic-bezier(.2, .7, .2, 1),

    filter
    0.6s
    ease;
}


/* =========================================
   MULTIPLICA IMAGE TREATMENT
========================================= */

.multiplica-project__media::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.22) 0%,
      rgba(5, 5, 5, 0.04) 20%,
      transparent 36%
    ),

    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.05),
      transparent 26%,
      transparent 72%,
      rgba(5, 5, 5, 0.12)
    );
}


/* =========================================
   MULTIPLICA IMAGE INTERACTION
========================================= */

@media (hover: hover) and (pointer: fine) {

  .multiplica-project__media:hover
  .multiplica-project__photo {
    transform: scale(1.035);

    filter:
      brightness(0.94)
      contrast(1);
  }

}


/* =========================================
   MULTIPLICA CAPTION
========================================= */

.multiplica-project__caption {
  position: absolute;

  right: 0;

  bottom: 56px;

  width: 55vw;

  padding-right:
    clamp(28px, 5vw, 80px);

  display: flex;

  align-items: center;

  gap: 18px;
}


.multiplica-project__caption span {
  flex: 0 0 auto;

  font-size: 13px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.07em;

  color:
    rgba(255, 255, 255, 0.34);
}


.multiplica-project__caption-line {
  flex: 1 !important;

  height: 1px;

  background:
    rgba(255, 255, 255, 0.13);
}


/* =========================================
   MULTIPLICA LARGE DESKTOP
========================================= */

@media (min-width: 1500px) {

  .multiplica-project {
    min-height: 860px;
  }


  .multiplica-project__content {
    width: 540px;
  }


  .multiplica-project__visual {
    width: 55vw;

    max-width: 1050px;
  }


  .multiplica-project__caption {
    width: 55vw;

    max-width: 1050px;
  }

}


/* =========================================
   MULTIPLICA LAPTOP
========================================= */

@media (max-width: 1180px) {

  .multiplica-project {
    min-height: auto;

    padding:
      100px
      0
      80px;
  }


  .multiplica-project__content {
    width:
      min(42vw, 480px);

    margin-left:
      clamp(32px, 6vw, 80px);

    padding-top: 0;
  }


  .multiplica-project__heading h2 {
    font-size:
      clamp(48px, 5.2vw, 68px);
  }


  .multiplica-project__description {
    max-width: 460px;
  }


  .multiplica-project__visual {
    top: 86px;

    width: 51vw;

    height: 590px;
  }


  .multiplica-project__caption {
    position: relative;

    right: auto;
    bottom: auto;

    width: 51vw;

    margin-top: 62px;
    margin-left: auto;

    padding-right: 34px;
  }

}


/* =========================================
   MULTIPLICA TABLET
========================================= */

@media (max-width: 900px) {

  .multiplica-project {
    padding:
      90px
      7vw
      80px;
  }


  .multiplica-project__content {
    width: 100%;

    max-width: 720px;

    margin-left: 0;
  }


  .multiplica-project__heading h2 {
    font-size:
      clamp(54px, 9vw, 78px);
  }


  .multiplica-project__description {
    max-width: 650px;
  }


  .multiplica-project__meta {
    max-width: 650px;
  }


  .multiplica-project__visual {
    position: relative;

    top: auto;
    right: auto;

    width:
      calc(100% + 7vw);

    height: auto;

    margin-top: 70px;

    margin-right: -7vw;
  }


  .multiplica-project__media {
    width: 100%;

    aspect-ratio: 1.4 / 1;

    border-radius:
      16px
      0
      0
      16px;
  }


  .multiplica-project__caption {
    position: relative;

    width: 100%;

    margin-top: 20px;

    padding-right: 0;
  }

}


/* =========================================
   MULTIPLICA MOBILE
========================================= */

@media (max-width: 620px) {

  .multiplica-project {
    padding:
      76px
      22px
      64px;
  }


  .multiplica-project__heading h2 {
    font-size:
      clamp(46px, 13vw, 62px);
  }


  .multiplica-project__description {
    margin-top: 28px;
  }


  .multiplica-project__description p {
    font-size: 16px;

    line-height: 1.7;
  }


  .multiplica-project__description p + p {
    margin-top: 20px;
  }


  .multiplica-project__meta {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 18px;
  }


  .multiplica-project__visual {
    width:
      calc(100% + 22px);

    margin-top: 52px;

    margin-right: -22px;
  }


  .multiplica-project__media {
    aspect-ratio: 1 / 1;

    border-radius:
      12px
      0
      0
      12px;
  }


  .multiplica-project__photo {
    object-position: center;
  }


  .multiplica-project__caption {
    margin-top: 18px;

    gap: 12px;
  }


  .multiplica-project__caption-line {
    display: none;
  }


  .multiplica-project__caption span:last-child {
    margin-left: auto;
  }

}


/* =========================================
   MULTIPLICA VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .multiplica-project__caption {
    flex-direction: column;

    align-items: flex-start;
  }


  .multiplica-project__caption span:last-child {
    margin-left: 0;
  }

}


/* =========================================
   NEO360 PROJECT
========================================= */

.neo360-project {
  --neo360-bg: #050505;
  --neo360-white: #ffffff;
  --neo360-text: rgba(255, 255, 255, 0.96);
  --neo360-copy: rgba(255, 255, 255, 0.66);
  --neo360-muted: rgba(255, 255, 255, 0.42);
  --neo360-line: rgba(255, 255, 255, 0.14);
  --neo360-turquoise: #61d8d3;
  --neo360-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  min-height: 820px;

  overflow: hidden;

  background: var(--neo360-bg);

  color: var(--neo360-text);

  font-family: var(--neo360-font);
}


.neo360-project img {
  display: block;
  max-width: 100%;
}


/* =========================================
   NEO360 LEFT CONTENT
========================================= */

.neo360-project__content {
  position: relative;

  z-index: 3;

  width: min(36vw, 560px);

  margin-left:
    clamp(34px, 9.5vw, 165px);

  padding-top:
    clamp(120px, 11vw, 180px);
}


/* =========================================
   NEO360 BRAND / EYEBROW
========================================= */

.neo360-project__brand {
  display: block;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  color: var(--neo360-turquoise);

  text-transform: uppercase;
}


/* =========================================
   NEO360 TITLE
========================================= */

.neo360-project__heading h2 {
  font-size:
    clamp(52px, 4.9vw, 78px);

  font-weight: 300;

  line-height: 0.98;

  letter-spacing: -0.06em;

  color: var(--neo360-white);
}


/* =========================================
   NEO360 DESCRIPTION
========================================= */

.neo360-project__description {
  width: 100%;

  max-width: 540px;

  margin-top: 36px;
}


.neo360-project__description p {
  font-size: 16px;

  font-weight: 300;

  line-height: 1.75;

  letter-spacing: -0.01em;

  color: var(--neo360-copy);
}


.neo360-project__description p + p {
  margin-top: 22px;
}


/* =========================================
   NEO360 META
========================================= */

.neo360-project__meta {
  width: 100%;

  max-width: 540px;

  margin-top: 48px;

  padding-top: 24px;

  display: grid;

  grid-template-columns:
    1.25fr
    0.55fr
    1.2fr;

  gap: 26px;

  border-top:
    1px solid
    var(--neo360-line);
}


.neo360-project__meta-item {
  min-width: 0;
}


.neo360-project__meta-label,
.neo360-project__meta-value {
  display: block;
}


.neo360-project__meta-label {
  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  color: var(--neo360-muted);
}


.neo360-project__meta-value {
  font-size: 13px;

  font-weight: 400;

  line-height: 1.55;

  color: var(--neo360-white);
}


/* =========================================
   NEO360 RIGHT VISUAL
========================================= */

.neo360-project__visual {
  position: absolute;

  top: 66px;

  right: 0;

  width: 55vw;

  height:
    clamp(560px, 44vw, 675px);

  z-index: 2;
}


/* =========================================
   NEO360 MEDIA
========================================= */

.neo360-project__media {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius:
    18px
    0
    0
    18px;

  background: #0b0d0f;
}


/* =========================================
   NEO360 PHOTO
========================================= */

.neo360-project__photo {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  filter:
    brightness(0.88)
    contrast(0.97);

  transition:
    transform
    0.9s
    cubic-bezier(.2, .7, .2, 1),

    filter
    0.6s
    ease;
}


/* =========================================
   NEO360 IMAGE TREATMENT
========================================= */

.neo360-project__media::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.20) 0%,
      rgba(5, 5, 5, 0.04) 20%,
      transparent 36%
    ),

    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.05),
      transparent 26%,
      transparent 72%,
      rgba(5, 5, 5, 0.12)
    );
}


/* =========================================
   NEO360 IMAGE INTERACTION
========================================= */

@media (hover: hover) and (pointer: fine) {

  .neo360-project__media:hover
  .neo360-project__photo {
    transform: scale(1.035);

    filter:
      brightness(0.94)
      contrast(1);
  }

}


/* =========================================
   NEO360 CAPTION
========================================= */

.neo360-project__caption {
  position: absolute;

  right: 0;

  bottom: 56px;

  width: 55vw;

  padding-right:
    clamp(28px, 5vw, 80px);

  display: flex;

  align-items: center;

  gap: 18px;
}


.neo360-project__caption span {
  flex: 0 0 auto;

  font-size: 13px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.07em;

  color:
    rgba(255, 255, 255, 0.34);
}


.neo360-project__caption-line {
  flex: 1 !important;

  height: 1px;

  background:
    rgba(255, 255, 255, 0.13);
}


/* =========================================
   NEO360 LARGE DESKTOP
========================================= */

@media (min-width: 1500px) {

  .neo360-project {
    min-height: 860px;
  }


  .neo360-project__content {
    width: 540px;
  }


  .neo360-project__visual {
    width: 55vw;

    max-width: 1050px;
  }


  .neo360-project__caption {
    width: 55vw;

    max-width: 1050px;
  }

}


/* =========================================
   NEO360 LAPTOP
========================================= */

@media (max-width: 1180px) {

  .neo360-project {
    min-height: auto;

    padding:
      100px
      0
      80px;
  }


  .neo360-project__content {
    width:
      min(42vw, 480px);

    margin-left:
      clamp(32px, 6vw, 80px);

    padding-top: 0;
  }


  .neo360-project__heading h2 {
    font-size:
      clamp(48px, 5.2vw, 68px);
  }


  .neo360-project__description {
    max-width: 460px;
  }


  .neo360-project__visual {
    top: 86px;

    width: 51vw;

    height: 590px;
  }


  .neo360-project__caption {
    position: relative;

    right: auto;
    bottom: auto;

    width: 51vw;

    margin-top: 62px;
    margin-left: auto;

    padding-right: 34px;
  }

}


/* =========================================
   NEO360 TABLET
========================================= */

@media (max-width: 900px) {

  .neo360-project {
    padding:
      90px
      7vw
      80px;
  }


  .neo360-project__content {
    width: 100%;

    max-width: 720px;

    margin-left: 0;
  }


  .neo360-project__heading h2 {
    font-size:
      clamp(54px, 9vw, 78px);
  }


  .neo360-project__description {
    max-width: 650px;
  }


  .neo360-project__meta {
    max-width: 650px;
  }


  .neo360-project__visual {
    position: relative;

    top: auto;
    right: auto;

    width:
      calc(100% + 7vw);

    height: auto;

    margin-top: 70px;

    margin-right: -7vw;
  }


  .neo360-project__media {
    width: 100%;

    aspect-ratio: 1.4 / 1;

    border-radius:
      16px
      0
      0
      16px;
  }


  .neo360-project__caption {
    position: relative;

    width: 100%;

    margin-top: 20px;

    padding-right: 0;
  }

}


/* =========================================
   NEO360 MOBILE
========================================= */

@media (max-width: 620px) {

  .neo360-project {
    padding:
      76px
      22px
      64px;
  }


  .neo360-project__heading h2 {
    font-size:
      clamp(46px, 13vw, 62px);
  }


  .neo360-project__description {
    margin-top: 28px;
  }


  .neo360-project__description p {
    font-size: 16px;

    line-height: 1.7;
  }


  .neo360-project__description p + p {
    margin-top: 20px;
  }


  .neo360-project__meta {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 18px;
  }


  .neo360-project__visual {
    width:
      calc(100% + 22px);

    margin-top: 52px;

    margin-right: -22px;
  }


  .neo360-project__media {
    aspect-ratio: 1 / 1;

    border-radius:
      12px
      0
      0
      12px;
  }


  .neo360-project__photo {
    object-position: center;
  }


  .neo360-project__caption {
    margin-top: 18px;

    gap: 12px;
  }


  .neo360-project__caption-line {
    display: none;
  }


  .neo360-project__caption span:last-child {
    margin-left: auto;
  }

}


/* =========================================
   NEO360 VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .neo360-project__caption {
    flex-direction: column;

    align-items: flex-start;
  }


  .neo360-project__caption span:last-child {
    margin-left: 0;
  }

}


/* =========================================
   WEB PROJECT LIST
========================================= */

.web-list {
  --web-bg: #ffffff;
  --web-text: #090909;
  --web-copy: rgba(9, 9, 9, 0.62);
  --web-muted: rgba(9, 9, 9, 0.44);
  --web-line: rgba(9, 9, 9, 0.12);
  --web-accent: #61d8d3;
  --web-font:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  padding:
    clamp(100px, 9vw, 150px)
    clamp(28px, 8vw, 130px)
    clamp(110px, 10vw, 170px);

  overflow: hidden;

  background: var(--web-bg);

  color: var(--web-text);

  font-family: var(--web-font);
}


.web-list img {
  display: block;

  width: 100%;

  max-width: 100%;
}


/* =========================================
   WEB LIST CONTAINER
========================================= */

.web-list__container {
  width: 100%;

  max-width: 1260px;

  margin: 0 auto;
}


/* =========================================
   WEB LIST HEADER
========================================= */

.web-list__header {
  margin-bottom:
    clamp(70px, 7vw, 105px);
}


/* =========================================
   WEB LIST EYEBROW
========================================= */

.web-list__eyebrow {
  display: block;

  margin-bottom: 16px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  color: var(--web-muted);
}


/* =========================================
   WEB LIST SECTION TITLE
========================================= */

.web-list__header h2 {
  font-size:
    clamp(52px, 6vw, 86px);

  font-weight: 300;

  line-height: 1;

  letter-spacing: -0.06em;

  color: var(--web-text);
}


/* =========================================
   WEB PROJECT LIST
========================================= */

.web-list__items {
  width: 100%;
}


/* =========================================
   WEB PROJECT ITEM
========================================= */

.web-item {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(300px, 420px)
    minmax(0, 1fr);

  gap:
    clamp(48px, 6vw, 90px);

  align-items: center;

  padding:
    clamp(48px, 5vw, 72px)
    0;

  border-top:
    1px solid
    var(--web-line);
}


.web-item:last-child {
  border-bottom:
    1px solid
    var(--web-line);
}


/* =========================================
   WEB PROJECT VISUAL
========================================= */

.web-item__visual {
  position: relative;

  width: 100%;

  aspect-ratio: 1.28 / 1;

  overflow: hidden;

  border-radius: 18px;

  background: #f2f2f2;
}


/* =========================================
   WEB PROJECT IMAGE
========================================= */

.web-item__visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.01);

  transition:
    transform
    0.8s
    cubic-bezier(.2, .7, .2, 1);
}


/* =========================================
   WEB PROJECT CONTENT
========================================= */

.web-item__content {
  width: 100%;

  max-width: 680px;
}


/* =========================================
   WEB PROJECT CATEGORY
========================================= */

.web-item__category {
  display: block;

  margin-bottom: 15px;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: var(--web-muted);
}


/* =========================================
   WEB PROJECT TITLE
========================================= */

.web-item h3 {
  max-width: 650px;

  font-size:
    clamp(34px, 3.4vw, 54px);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -0.045em;

  color: var(--web-text);
}


/* =========================================
   WEB PROJECT META
========================================= */

.web-item__meta {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px 20px;

  margin-top: 18px;
}


.web-item__meta span {
  position: relative;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.4;

  letter-spacing: 0.04em;

  color: var(--web-muted);
}


.web-item__meta span + span {
  padding-left: 21px;
}


.web-item__meta span + span::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--web-accent);

  transform:
    translateY(-50%);
}


/* =========================================
   WEB PROJECT DESCRIPTION
========================================= */

.web-item p {
  max-width: 620px;

  margin-top: 26px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.75;

  letter-spacing: -0.01em;

  color: var(--web-copy);
}


/* =========================================
   WEB PROJECT IMAGE HOVER
========================================= */

@media (hover: hover) and (pointer: fine) {

  .web-item:hover
  .web-item__visual img {
    transform:
      scale(1.045);
  }

}


/* =========================================
   WEB LIST TABLET
========================================= */

@media (max-width: 900px) {

  .web-list {
    padding:
      90px
      7vw
      110px;
  }


  .web-list__header {
    margin-bottom: 56px;
  }


  .web-item {
    grid-template-columns:
      minmax(240px, 0.8fr)
      minmax(0, 1.2fr);

    gap: 40px;
  }


  .web-item h3 {
    font-size:
      clamp(32px, 4.6vw, 46px);
  }

}


/* =========================================
   WEB LIST MOBILE
========================================= */

@media (max-width: 680px) {

  .web-list {
    padding:
      76px
      22px
      90px;
  }


  .web-list__header {
    margin-bottom: 46px;
  }


  .web-list__header h2 {
    font-size:
      clamp(46px, 13vw, 62px);
  }


  .web-item {
    grid-template-columns: 1fr;

    gap: 30px;

    padding:
      42px
      0;
  }


  .web-item__visual {
    aspect-ratio: 1.3 / 1;

    border-radius: 14px;
  }


  .web-item__content {
    max-width: 100%;
  }


  .web-item h3 {
    font-size:
      clamp(31px, 9vw, 42px);
  }


  .web-item p {
    margin-top: 20px;

    font-size: 16px;

    line-height: 1.7;
  }

}


/* =========================================
   WEB LIST SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .web-item__meta {
    flex-direction: column;

    align-items: flex-start;

    gap: 6px;
  }


  .web-item__meta span + span {
    padding-left: 0;
  }


  .web-item__meta span + span::before {
    display: none;
  }

}


/* =========================================
   PORTFOLIO CTA
========================================= */

.portfolio-cta {
  --cta-text: #ffffff;
  --cta-copy: rgba(255, 255, 255, 0.68);
  --cta-border: rgba(255, 255, 255, 0.14);
  --cta-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --cta-font:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  padding: 84px 22px;

  overflow: hidden;

  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 92% 14%, rgba(118, 255, 246, 0.08), transparent 16%),
    radial-gradient(circle at 92% 74%, rgba(118, 255, 246, 0.05), transparent 18%),
    linear-gradient(180deg, #040404 0%, #020202 100%);

  color: var(--cta-text);

  font-family: var(--cta-font);
}


.portfolio-cta__ambient {
  position: absolute;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  opacity: 0.18;

  background:
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.24), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(118,255,246,0.24), transparent 22%);

  filter: blur(18px);
}


.portfolio-cta__grid {
  position: absolute;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

  background-size: 140px 140px;

  opacity: 0.34;
}


.portfolio-cta__card {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1120px;

  margin: 0 auto;

  min-height: 560px;

  padding:
    clamp(54px, 6vw, 80px)
    clamp(24px, 6vw, 70px);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.015) 0%,
      rgba(255,255,255,0.01) 100%
    );

  border: 1px solid var(--cta-border);

  border-radius: 28px;

  box-shadow: var(--cta-shadow);

  overflow: hidden;
}


.portfolio-cta__title {
  max-width: 860px;

  font-size:
    clamp(44px, 5.2vw, 72px);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.06em;

  color: #ffffff;
}


.portfolio-cta__text {
  max-width: 760px;

  margin-top: 26px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.8;

  letter-spacing: -0.01em;

  color: var(--cta-copy);
}


.portfolio-cta__actions {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-top: 36px;
}


.portfolio-cta__button {
  min-width: 188px;

  min-height: 58px;

  padding: 0 26px;

  border-radius: 999px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 16px;

  font-weight: 500;

  line-height: 1;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


.portfolio-cta__button--ghost {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.16);

  color: #ffffff;
}


.portfolio-cta__button:hover {
  transform: translateY(-2px);
}


.portfolio-cta__button--ghost:hover {
  background: rgba(255,255,255,0.08);

  border-color: rgba(255,255,255,0.28);
}


/* =========================================
   PORTFOLIO CTA TABLET
========================================= */

@media (max-width: 900px) {

  .portfolio-cta {
    padding: 72px 18px;
  }


  .portfolio-cta__card {
    min-height: 500px;

    padding: 52px 26px;
  }


  .portfolio-cta__title {
    font-size:
      clamp(40px, 6vw, 60px);
  }

}


/* =========================================
   PORTFOLIO CTA MOBILE
========================================= */

@media (max-width: 680px) {

  .portfolio-cta {
    padding: 64px 16px;
  }


  .portfolio-cta__card {
    min-height: auto;

    padding:
      42px
      20px
      46px;

    border-radius: 22px;
  }


  .portfolio-cta__title {
    max-width: 100%;

    font-size:
      clamp(34px, 10vw, 48px);

    line-height: 1.02;
  }


  .portfolio-cta__text {
    margin-top: 18px;

    font-size: 16px;

    line-height: 1.72;
  }


  .portfolio-cta__actions {
    width: 100%;

    flex-direction: column;

    margin-top: 28px;
  }


  .portfolio-cta__button {
    width: 100%;

    min-width: 0;
  }

}


/* =========================================
   PORTFOLIO FOOTER
========================================= */

.portfolio-footer {
  --footer-bg: #030405;
  --footer-text: rgba(255, 255, 255, 0.38);
  --footer-text-strong: rgba(255, 255, 255, 0.82);
  --footer-line: rgba(255, 255, 255, 0.08);
  --footer-glass-border: rgba(255, 255, 255, 0.12);
  --footer-font:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  position: relative;

  width: 100%;

  padding:
    22px
    clamp(24px, 4vw, 64px);

  background: var(--footer-bg);

  border-top:
    1px solid
    var(--footer-line);

  font-family: var(--footer-font);
}


/* =========================================
   PORTFOLIO FOOTER INNER
========================================= */

.portfolio-footer__inner {
  width: 100%;

  max-width: 1500px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;
}


/* =========================================
   PORTFOLIO FOOTER COPYRIGHT
========================================= */

.portfolio-footer__copyright {
  margin: 0;

  font-size: 13px;

  font-weight: 400;

  line-height: 1.5;

  color: var(--footer-text);
}


/* =========================================
   PORTFOLIO FOOTER POWERED BY / GLASS
========================================= */

.portfolio-footer__powered {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  min-height: 42px;

  padding:
    0
    16px;

  overflow: hidden;


  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.portfolio-footer__powered::before {
  content: "";

  position: absolute;

  top: -70%;
  left: -30%;

  width: 60%;
  height: 220%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.09),
      transparent
    );

  transform:
    rotate(20deg)
    translateX(-160%);
}


/* =========================================
   PORTFOLIO FOOTER POWERED TEXT
========================================= */

.portfolio-footer__powered-label {
  position: relative;

  z-index: 1;

  font-size: 13px;

  font-weight: 400;

  line-height: 1;

  color:
    rgba(255, 255, 255, 0.42);
}


.portfolio-footer__powered strong {
  position: relative;

  z-index: 1;

  font-size: 13px;

  font-weight: 500;

  line-height: 1;

  color: var(--footer-text-strong);
}


/* =========================================
   PORTFOLIO FOOTER HOVER
========================================= */

@media (hover: hover) and (pointer: fine) {

  .portfolio-footer__powered:hover {
    transform:
      translateY(-2px);



    background:
      rgba(255, 255, 255, 0.07);


  }


  .portfolio-footer__powered:hover::before {
    animation:
      footerGlassSweep
      0.8s
      ease;
  }

}


@keyframes footerGlassSweep {

  from {
    transform:
      rotate(20deg)
      translateX(-160%);
  }

  to {
    transform:
      rotate(20deg)
      translateX(420%);
  }

}


/* =========================================
   PORTFOLIO FOOTER MOBILE
========================================= */

@media (max-width: 620px) {

  .portfolio-footer {
    padding:
      22px
      20px;
  }


  .portfolio-footer__inner {
    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
  }


  .portfolio-footer__powered {
    min-height: 40px;

    border-radius: 12px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .portfolio-footer__powered,
  .portfolio-footer__powered::before {
    animation: none !important;

    transition: none !important;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition: none !important;
  }

}
