/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: #0b1320;
  color: #eaeaea;
  cursor: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,214,90,0.08), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(80,140,255,0.12), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(40,180,120,0.1), transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.cta-btn {
  position: relative;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  color: #fff;
  backdrop-filter: blur(10px);
  cursor: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,214,90,0.25),
    rgba(80,140,255,0.25),
    rgba(40,180,120,0.25)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-btn:hover::after {
  opacity: 1;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* AI helper (hidden safely) */
.ai-helper {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* SERVICES */
.services-section {
  padding: 120px 8vw;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 520px;
  opacity: 0.7;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  opacity: 0.7;
  line-height: 1.6;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* DUST CANVAS */
#dust-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

/* MOBILE */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor,
  #dust-canvas {
    display: none;
  }
}

.trust-section {
  padding: 120px 8vw;
  max-width: 700px;
}

.trust-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.trust-section p {
  opacity: 0.7;
  margin-bottom: 30px;
}

.trust-points li {
  list-style: none;
  margin-bottom: 12px;
  opacity: 0.8;
}
