* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #11162a, #0B0F1A 60%);
  color: #E6E9F0;
  line-height: 1.7;
}

/* ANIMATION BASE */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero h1 {
  font-size: 58px;
  font-weight: 700;
}

.hero h1 span {
  color: #4DA3FF;
}

.hero p {
  margin-top: 22px;
  max-width: 620px;
  color: #9AA3B2;
}

.cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #4DA3FF, #2EF2C9);
  color: #000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* INTRO */
.intro {
  padding: 90px 10%;
  text-align: center;
  color: #9AA3B2;
}

/* SERVICES */
.services {
  padding: 120px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.service {
  background: linear-gradient(180deg, #12182B, #0F1424);
  border: 1px solid #1F2A44;
  border-radius: 22px;
  padding: 34px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service h2 {
  margin-bottom: 8px;
}

.tag {
  color: #4DA3FF;
  margin-bottom: 14px;
  font-size: 14px;
}

.service ul li {
  margin-bottom: 8px;
  color: #9AA3B2;
}

.highlight {
  border: 1px solid #4DA3FF;
}

/* POSITIONING */
.positioning {
  padding: 90px 10%;
  text-align: center;
}

.positioning ul li {
  color: #9AA3B2;
  margin-top: 10px;
}

/* NOTE */
.note-block {
  padding: 80px 10%;
  background: #12182B;
  text-align: center;
}

.bold {
  margin-top: 16px;
  font-weight: 600;
}

/* APPLY */
.apply {
  padding: 120px 10%;
  text-align: center;
}

footer {
  padding: 30px;
  text-align: center;
  color: #9AA3B2;
}
