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

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ── Stars Canvas ── */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: lowercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2.5rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 50%, #ff6a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.5rem;
  max-width: 500px;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(255, 106, 0, 0.6);
  color: #ff6a00;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── About ── */
.about-text p {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.about-text p.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text p + p {
  margin-top: 1.5rem;
}

.about-text p:first-child strong {
  color: #fff;
  font-weight: 500;
}

/* ── Services / Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.03);
}

.card-icon {
  font-size: 1.6rem;
  color: #ff6a00;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
}

.card p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Contact ── */
.contact-text {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.contact-email {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6a00;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links a {
    margin-left: 1.5rem;
    font-size: 0.7rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .hero-tagline {
    font-size: 0.65rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .contact-email {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }
}
