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

/* BASE STYLES */
body {
  font-family: "Inter", sans-serif;
  background-color: #0b0d10;
  color: #e6e6e6;
  overflow-x: hidden;
}

/* BACKGROUND LAYER */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(15,18,22,0.7), #0b0d10 70%);
  animation: bgMove 40s linear infinite;
  z-index: -1;
}

@keyframes bgMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, -10%) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* MAIN CONTENT */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

/* ACCENT LINE */
.accent-line {
  width: 70px;
  height: 3px;
  background-color: #b11226;
  margin-bottom: 24px;
  animation: drawLine 1s ease-out;
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 70px; }
}

/* TEXT */
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 18px;
  max-width: 800px;
}

.subtext {
  color: #9aa0a6;
  max-width: 780px;
}

/* FOCUS LIST */
.focus {
  margin: 60px 0;
}

.focus h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.focus ul {
  list-style: none;
}

.focus li {
  padding: 10px 0;
  position: relative;
  padding-left: 18px;
  transition: transform 0.3s ease;
}

.focus li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #b11226;
  border-radius: 50%;
}

.focus li:hover {
  transform: translateX(6px);
  color: #ffffffdd;
}

/* STATUS */
.status .launch {
  font-weight: 500;
  margin-bottom: 10px;
}

.contact a {
  color: #b11226;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}

.contact a:hover {
  border-bottom: 1px solid #b11226;
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #6f757b;
}

/* FADE-IN ANIMATIONS */
.fade-in {
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.delay1 { animation-delay: 0.4s; }
.delay2 { animation-delay: 0.8s; }
.delay3 { animation-delay: 1.2s; }
.delay4 { animation-delay: 1.6s; }
.delay5 { animation-delay: 2.0s; }
.delay6 { animation-delay: 2.4s; }

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

/* RESPONSIVE */
@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.15rem; }
}
