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

html,
body {
  height: 100%;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #2d1b4c 0, #050510 45%, #000 100%);
  color: #f5f5ff;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  position: relative;
}

/* Subtle galaxy / starfield overlay */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(126, 94, 255, 0.25) 0, transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 90, 221, 0.2) 0, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 172, 255, 0.18) 0, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(255, 221, 90, 0.15) 0, transparent 50%);
  opacity: 0.9;
  z-index: -1;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(transparent 0, transparent 1px),
    radial-gradient(transparent 0, transparent 1px);
  background-size: 3px 3px;
  background-position: 0 0, 1.5px 1.5px;
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff, #ffd36b 30%, #ff5cd1 60%, #3a7bff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #050510;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 11px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: #d9dcff;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff9cf5, #7a9cff);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: #fdfdff;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.15), transparent 55%);
  backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta::after {
  content: "↗";
  font-size: 11px;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a7b4ff;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, #ff9cf5, #7a9cff);
}

h1 {
  font-size: clamp(2.1rem, 3.1vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.accent-text {
  background: linear-gradient(120deg, #ff9cf5, #ffd36b, #7a9cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: #d2d6ff;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  background: linear-gradient(135deg, #ff9cf5, #ffd36b);
  color: #050510;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(255, 156, 245, 0.45);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.primary-btn.large {
  padding: 12px 26px;
  font-size: 15px;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(255, 156, 245, 0.6);
}

.ghost-btn {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(199, 203, 255, 0.45);
  background: rgba(7, 7, 18, 0.7);
  color: #e4e7ff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.ghost-btn::after {
  content: "↓";
  font-size: 11px;
}

.ghost-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  font-size: 12px;
  color: #b8bfff;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
}

.hero-metric {
  font-size: 18px;
  font-weight: 600;
}

.hero-label {
  opacity: 0.75;
}

.hero-card {
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(122, 156, 255, 0.4), rgba(31, 35, 82, 0.9));
  border: 1px solid rgba(184, 191, 255, 0.3);
  box-shadow: 0 20px 70px rgba(6, 5, 30, 0.9);
  backdrop-filter: blur(24px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-red {
  background: #ff5f5f;
}

.dot-yellow {
  background: #ffd36b;
}

.dot-green {
  background: #3cffb0;
}

.hero-card-body {
  padding: 18px 18px 18px;
}

.hero-card-body h2 {
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-card-body p {
  font-size: 13px;
  color: #dde2ff;
  margin-bottom: 10px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 10px;
}

.card-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 2px;
}

.pill-critical {
  background: rgba(255, 95, 95, 0.16);
  color: #ffe1e1;
}

.pill-focus {
  background: rgba(122, 156, 255, 0.15);
  color: #e0e4ff;
}

.inline-link {
  font-size: 12px;
  color: #f6e2ff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(246, 226, 255, 0.6);
}

.inline-link:hover {
  border-bottom-style: solid;
}

.section {
  margin-bottom: 52px;
}

.section-header {
  max-width: 460px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.section-header p {
  font-size: 14px;
  color: #cdd2ff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(10, 10, 28, 0.96);
  border: 1px solid rgba(122, 156, 255, 0.3);
  font-size: 13px;
}

.service-card.highlight {
  border-color: rgba(255, 156, 245, 0.8);
  box-shadow: 0 16px 40px rgba(255, 156, 245, 0.35);
}

.service-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.service-card p {
  color: #d3d7ff;
  margin-bottom: 8px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #aeb4ff;
}

.service-card ul li::before {
  content: "✦";
  margin-right: 6px;
  color: #ffd36b;
}

.process .timeline {
  border-left: 1px dashed rgba(143, 151, 255, 0.5);
  margin-left: 8px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding-left: 4px;
}

.timeline-badge {
  position: absolute;
  left: -35px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff, #ffd36b 25%, #ff9cf5 75%);
  color: #050510;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 0 14px rgba(255, 214, 146, 0.7);
}

.timeline-content h3 {
  font-size: 14px;
  margin-bottom: 2px;
}

.timeline-content p {
  font-size: 13px;
  color: #c7ccff;
}

.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(7, 8, 22, 0.96);
  border: 1px solid rgba(170, 177, 255, 0.4);
  font-size: 13px;
}

.testimonial-card .quote {
  font-style: italic;
  color: #e4e8ff;
  margin-bottom: 10px;
}

.testimonial-card .person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}

.testimonial-card .name {
  font-weight: 500;
}

.testimonial-card .role {
  color: #a7adff;
}

.case-studies .case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(9, 10, 30, 0.96);
  border: 1px solid rgba(147, 162, 255, 0.5);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a7b4ff;
}

.case-card h3 {
  font-size: 14px;
}

.case-card p {
  font-size: 13px;
  color: #d8ddff;
}

.case-metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 4px;
  font-size: 12px;
  color: #b7beff;
}

.case-metrics li span {
  font-weight: 600;
  margin-right: 4px;
  color: #ffd36b;
}

.cta-section {
  margin-top: 10px;
}

.cta-inner {
  border-radius: 20px;
  padding: 22px 18px 20px;
  background: linear-gradient(135deg, rgba(255, 156, 245, 0.16), rgba(122, 156, 255, 0.22));
  border: 1px solid rgba(255, 214, 146, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: 18px;
}

.cta-inner p {
  font-size: 13px;
  color: #1b1020;
  max-width: 320px;
}

.footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 97, 162, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #8c94ff;
}

.footer-tagline {
  margin-left: 8px;
  font-size: 11px;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .nav-links {
    display: none;
  }

  .page {
    padding-inline: 16px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-studies .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page {
    padding-inline: 14px;
  }

  .hero {
    gap: 24px;
  }

  .hero-card-body {
    padding: 14px 14px 14px;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-studies .case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


