/* =========================
   HOME PAGE
   ========================= */

.home-page {
  background: #000000;
  color: #ffffff;
}


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

.home-page .site-nav {
  background: #000000;
}


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

.home-page .hero {
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  background: #000000;
  color: #ffffff;
}

.home-page .hero-inner {
  position: relative;
  z-index: 2;

  width: calc(100% - 64px);
  max-width: 1000px;

  margin: 0 auto;
  padding: 80px 0 0;

  text-align: center;
}

.home-page .hero-intro {
  margin: 0 0 22px;

  color: #c7c7c7;

  font-size: 14px;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.home-page .hero-title {
  max-width: 900px;

  margin: 0 auto;

  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.06;

  letter-spacing: -0.035em;
}

.home-page .hero-title span {
  display: block;

  color: #9d9d9d;
}

.home-page .hero-copy {
  max-width: 640px;

  margin: 28px auto 0;

  color: #b8b8b8;

  font-size: 17px;
  line-height: 1.7;
}

.home-page .hero-button {
  display: inline-block;

  margin-top: 28px;
  padding: 11px 23px;

  border: 1px solid #777777;

  color: #ffffff;

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.home-page .hero-button:hover,
.home-page .hero-button:focus {
  background: #ffffff;
  color: #000000;
}


/* =========================
   ABSTRACT HERO ART
   ========================= */

.home-page .hero-art {
  position: relative;

  width: min(620px, 90vw);
  height: 300px;

  margin: 25px auto 0;
}

.home-page .art-shape {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 470px;
  height: 210px;

  border: 1px solid rgba(125, 185, 255, 0.42);

  border-radius:
    62% 38% 58% 42% /
    43% 58% 42% 57%;

  background:
    radial-gradient(
      circle at 35% 40%,
      rgba(93, 173, 255, 0.45),
      rgba(15, 65, 125, 0.25) 35%,
      rgba(0, 0, 0, 0) 70%
    );

  box-shadow:
    inset 0 0 90px rgba(50, 130, 220, 0.25),
    0 0 70px rgba(30, 95, 175, 0.18);
}

.home-page .art-shape-one {
  transform:
    translate(-52%, -50%)
    rotate(-12deg)
    skewX(-9deg);
}

.home-page .art-shape-two {
  width: 400px;
  height: 195px;

  opacity: 0.6;

  transform:
    translate(-42%, -44%)
    rotate(18deg)
    skewX(14deg);
}

.home-page .art-glow {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 330px;
  height: 170px;

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

  background:
    radial-gradient(
      ellipse,
      rgba(75, 155, 240, 0.35),
      rgba(0, 0, 0, 0) 72%
    );

  filter: blur(28px);
}


/* =========================
   CONTENT CONTAINER
   ========================= */

.home-page .content-container {
  width: calc(100% - 64px);
  max-width: 1200px;

  margin: 0 auto;
}


/* =========================
   SECTION GENERAL
   ========================= */

.home-page .work-section,
.home-page .about-section,
.home-page .contact-section {
  padding: 100px 0;
}

.home-page .section-label {
  margin: 0 0 14px;

  color: #989898;

  font-size: 13px;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.home-page h2 {
  margin: 0;

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
}


/* =========================
   WORK
   ========================= */

.home-page .work-section {
  background: #0b0b0b;
}

.home-page .section-heading {
  max-width: 750px;

  margin-bottom: 48px;
}

.home-page .work-grid {
  display: grid;

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

  gap: 24px;
}

.home-page .work-card {
  min-height: 270px;

  padding: 30px;

  background: #151515;

  border: 1px solid #2c2c2c;
}

.home-page .work-number {
  color: #888888;

  font-size: 13px;
}

.home-page .work-card h3 {
  margin: 20px 0 14px;

  font-size: 24px;
  font-weight: 500;
}

.home-page .work-card p {
  margin-bottom: 26px;

  color: #bcbcbc;

  line-height: 1.65;
}

.home-page .work-card a {
  color: #ffffff;

  text-decoration: none;
}

.home-page .work-card a:hover,
.home-page .work-card a:focus {
  text-decoration: underline;
}


/* =========================
   ABOUT
   ========================= */

.home-page .about-section {
  background: #111111;
}

.home-page .about-grid {
  display: grid;

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

  gap: 80px;

  align-items: center;
}

.home-page .about-copy {
  color: #bdbdbd;

  font-size: 17px;
  line-height: 1.7;
}

.home-page .lead {
  color: #ffffff;

  font-size: 20px;
}


/* =========================
   CONTACT
   ========================= */

.home-page .contact-section {
  background: #000000;
}

.home-page .contact-content {
  text-align: center;
}

.home-page .contact-content .lead {
  margin: 20px 0;
}

.home-page .contact-button {
  display: inline-block;

  padding: 12px 24px;

  background: #ffffff;
  color: #000000;

  border: 1px solid #ffffff;

  text-decoration: none;
}

.home-page .contact-button:hover,
.home-page .contact-button:focus {
  background: transparent;
  color: #ffffff;
}


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

@media (max-width: 900px) {

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

  .home-page .about-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

}


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

@media (max-width: 650px) {

  .home-page .hero-inner {
    width: calc(100% - 32px);

    padding-top: 55px;
  }

  .home-page .hero-title {
    font-size: clamp(38px, 11vw, 54px);
  }

  .home-page .hero-copy {
    font-size: 16px;
  }

  .home-page .hero-art {
    height: 250px;
  }

  .home-page .art-shape {
    width: 320px;
    height: 170px;
  }

  .home-page .art-shape-two {
    width: 285px;
    height: 155px;
  }

  .home-page .content-container {
    width: calc(100% - 32px);
  }

  .home-page .work-section,
  .home-page .about-section,
  .home-page .contact-section {
    padding: 70px 0;
  }

  .home-page .work-grid {
    grid-template-columns: 1fr;
  }

}