* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'CustomFont';
  src: url('fonts/CustomFont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #080808, #020202);
  color: #e8e8e8;
  font-family: 'CustomFont', sans-serif;
  overflow-x: hidden;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 120px auto;
  padding: 30px;
}

/* Fade-in animation */
.fade-in {
  animation: fade 1.6s ease forwards;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography */
h1 {
  font-size: 58px;
  letter-spacing: 6px;
  font-weight: 600;
  margin: 0;
}

.tagline {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7e7e7e;
}

/* Sections */
section {
  margin-top: 80px;
}

h2 {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: #cfcfcf;
}

h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(to right, #5b3a9d, transparent);
}

p {
  margin-top: 18px;
  line-height: 1.9;
  color: #bdbdbd;
  max-width: 620px;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

ul li {
  padding: 10px 0;
  color: #c6c6c6;
  position: relative;
}

ul li::before {
  content: "—";
  color: #5b3a9d;
  margin-right: 10px;
}

/* Luxury link */
.lux-link {
  display: inline-block;
  margin-top: 20px;
  color: #5b3a9d;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.lux-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #9f85ff;
  transition: width 0.4s ease;
}

.lux-link:hover {
  color: #9f85ff;
}

.lux-link:hover::after {
  width: 100%;
}
