/* ── Nav ─────────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
}

.nav-cta {
  display: inline-block;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-cta:hover { background: rgba(255,255,255,0.18); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 120px 24px 140px;
  text-align: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Vignette: let the dark edges frame the animation without hard cutoffs */
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 28px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  padding: 13px 28px;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-hero-primary:hover { opacity: 0.88; }

.btn-hero-secondary {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.btn-hero-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.35); }

/* ── Features ────────────────────────────────────────────────────────────────── */

.features {
  background: #fff;
  padding: 100px 24px;
}

.features-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 32px rgba(0,0,0,0.06);
}

.feature-card {
  background: #fff;
  padding: 36px 32px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 10px;
  margin-bottom: 18px;
  color: #374151;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
}

/* ── Industries ──────────────────────────────────────────────────────────────── */

.industries {
  background: #f5f5f5;
  padding: 72px 24px;
  text-align: center;
}

.industries-inner { max-width: 700px; margin: 0 auto; }

.industries-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 24px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-tags span {
  display: inline-block;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ── How it works ────────────────────────────────────────────────────────────── */

.how {
  background: #fff;
  padding: 100px 24px;
}

.how-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 240px;
  text-align: left;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
}

.step-connector {
  flex-shrink: 0;
  padding: 0 16px;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .steps { flex-direction: column; align-items: flex-start; gap: 32px; max-width: 300px; margin: 0 auto; }
  .step-connector { display: none; }
  .step { max-width: 100%; }
}

/* ── Pricing ─────────────────────────────────────────────────────────────────── */

.pricing {
  background: #f5f5f5;
  padding: 100px 24px;
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.pricing-card--highlight {
  background: #0a0a0a;
  border-color: #0a0a0a;
}

.pricing-card--highlight h4 { color: #fff; }
.pricing-card--highlight p  { color: rgba(255,255,255,0.55); }

.pricing-card--highlight .pricing-card-icon {
  background: rgba(255,255,255,0.08);
  color: #a78bfa;
}

.pricing-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 10px;
  margin-bottom: 18px;
  color: #374151;
}

.pricing-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
}

/* ── CTA banner ──────────────────────────────────────────────────────────────── */

.cta-banner {
  background: #0a0a0a;
  padding: 100px 24px;
  text-align: center;
}

.cta-banner-inner { max-width: 480px; margin: 0 auto; }

.cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
