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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #050505;
}

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

header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  border-bottom: 1px solid #e6e6e6;
}

.brand {
  font-size: 21px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav-link {
  position: relative;
  border: none;
  background: none;
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link::after {
  content: "Coming soon";
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  background: #050505;
  color: #ffffff;
  padding: 7px 10px;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.nav-link:hover::after {
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 560px;
}

.hero-copy {
  padding: 86px 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  max-width: 620px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 800;
  margin-bottom: 28px;
}

.small-line {
  width: 50px;
  height: 2px;
  background: #050505;
  margin-bottom: 30px;
}

.lead {
  max-width: 560px;
  color: #242424;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 34px;
}

.buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  min-width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border: 1px solid #050505;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  transition: 0.2s ease;
}

.btn.primary {
  background: #050505;
  color: #ffffff;
}

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

.hero-image {
  min-height: 560px;
  background: #050505;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28));
  z-index: 2;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.4s ease,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
}

.feature-copy {
  background: #f4f4f4;
  padding: 72px 56px;
}

.feature-copy h2 {
  max-width: 540px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.feature-copy p {
  max-width: 420px;
  color: #252525;
  font-size: 16px;
  line-height: 1.6;
}

.service-panel {
  background: #050505;
  color: #ffffff;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  border-left: 1px solid #333333;
  padding-left: 28px;
}

.thumb {
  height: 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at center, #777777, #141414);
  margin-bottom: 22px;
}

.card h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p {
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 14px;
}

footer {
  background: #050505;
  color: #ffffff;
  border-top: 1px solid #202020;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.2s ease;
}

.social-icon:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  header {
    padding: 0 26px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 60px 26px;
  }

  .hero-image {
    min-height: 320px;
    clip-path: none;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 54px 26px;
  }

  .service-panel {
    grid-template-columns: 1fr;
    padding: 40px 26px;
  }

  footer {
    padding: 28px 26px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  h1 {
    letter-spacing: -2px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
