/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #c8cdd3;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h2, h3 {
  font-family: 'Inter', system-ui, sans-serif;
  color: #e8eaed;
}

strong {
  color: #00d4ff;
  font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(110, 68, 255, 0.06) 0%, transparent 50%),
    #0a0a0f;
}

.hero-bg-logo {
  position: absolute;
  inset: 0;
  background: url('../images/logo.png') no-repeat center center;
  background-size: cover;
  opacity: 0.06;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow:
    0 0 60px rgba(0, 212, 255, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #00d4ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #6e44ff);
  margin: 0 auto 24px;
  border-radius: 1px;
}

.hero-sub {
  font-size: 1.25rem;
  color: #8a8f98;
  font-weight: 400;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

/* ===== Mission ===== */
.mission {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mission-text {
  font-size: 1.3rem;
  line-height: 1.9;
  max-width: 800px;
  color: #a0a6b0;
}

/* ===== Services ===== */
.services {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.03) 0%, transparent 60%),
    #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: #00d4ff;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #e8eaed;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #8a8f98;
}

/* ===== Tech Stack ===== */
.tech {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #a0a6b0;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.tech-badge:hover {
  border-color: rgba(0, 212, 255, 0.3);
  color: #00d4ff;
}

/* ===== Contact ===== */
.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.contact-text {
  font-size: 1.5rem;
  color: #e8eaed;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-email {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.15rem;
  color: #0a0a0f;
  background: linear-gradient(135deg, #00d4ff, #6e44ff);
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-email:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  text-align: center;
}

.footer-content p {
  font-size: 0.85rem;
  color: #555a63;
}

.footer-tagline {
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem !important;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

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

  .section {
    padding: 70px 0;
  }

  .mission-text {
    font-size: 1.1rem;
  }

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

  .contact-text {
    font-size: 1.2rem;
  }

  .contact-email {
    font-size: 0.95rem;
    padding: 14px 28px;
  }

}
