:root {
  --ink: #150a28;
  --ink-soft: #241246;
  --violet: #7c3aed;
  --violet-soft: #a78bfa;
  --pink: #ff2e93;
  --lime: #ccff33;
  --cyan: #2ee6d0;
  --bg: #faf7ff;
  --surface: #ffffff;
  --text: #1b1230;
  --muted: #6d6483;
  --border: #ece4fb;
  --shadow: 0 20px 45px rgba(124, 58, 237, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.brand strong {
  display: block;
}

.brand small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--violet);
}

.nav-cta {
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #1a0b2e 0%, var(--violet) 55%, var(--pink) 100%);
  color: white;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.two-column h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-text,
.page-hero p,
.section-heading p,
.two-column p,
.info-card p,
.service-card p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.hero .hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(204, 255, 51, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--violet);
  border: 1px solid var(--border);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.hero-highlights li {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.slider {
  position: relative;
  min-height: 400px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 10, 40, 0.05), rgba(21, 10, 40, 0.7));
}

.slide-content {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: white;
}

.slide-content span {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(204, 255, 51, 0.25);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-content h3 {
  margin: 0;
  font-size: 1.3rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--lime);
}

/* Trust bar */
.trust-bar {
  padding: 1.6rem 0;
  background: var(--ink);
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  justify-content: space-between;
}

.trust-bar p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-chips span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-section {
  padding: 1.2rem 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2rem;
}

.stats-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.stats-grid strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(120deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 4.4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f5f0ff 0%, #fdf1f8 100%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.info-card h3,
.service-card h3,
.contact-card h3,
.about-panel h3,
.site-footer h3 {
  margin-top: 0;
  color: var(--ink);
}

/* Use-case icon grid */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
}

.usecase-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.usecase-card h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--ink);
}

/* Feature columns */
.feature-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature-columns article {
  padding: 1.4rem 1.2rem;
  border-radius: 20px;
  border: 1px dashed var(--border);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.9rem;
}

.feature-columns h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}

/* Benefit grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.benefit-card {
  border-radius: 22px;
  padding: 1.6rem 1.3rem;
  color: white;
  box-shadow: var(--shadow);
}

.benefit-card:nth-child(1) { background: linear-gradient(150deg, var(--violet), #4c1d95); }
.benefit-card:nth-child(2) { background: linear-gradient(150deg, var(--pink), #7a1350); }
.benefit-card:nth-child(3) { background: linear-gradient(150deg, var(--cyan), #0f766e); }
.benefit-card:nth-child(4) { background: linear-gradient(150deg, #4c1d95, var(--ink)); }

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: white;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
}

/* Industry grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pink);
}

.industry-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}

/* Support grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.support-card {
  text-align: center;
  padding: 1.6rem 1.2rem;
}

.support-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.support-card h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.page-hero {
  padding: 4.4rem 0 2.2rem;
  background: linear-gradient(135deg, #1a0b2e 0%, var(--violet) 55%, var(--pink) 100%);
  color: white;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 0.8rem;
}

.checklist div {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-banner {
  background: linear-gradient(135deg, var(--ink), var(--violet) 60%, var(--pink));
  color: white;
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner .eyebrow {
  color: var(--lime);
}

.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.6rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fbfaff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(124, 58, 237, 0.2);
  border-color: var(--violet);
}

.contact-card,
.about-panel {
  background: linear-gradient(135deg, #ffffff, #f6f0ff);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card ul,
.about-panel ul,
.site-footer ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.site-footer {
  background: var(--ink);
  color: #cfc6e6;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-brand {
  color: white;
}

.site-footer a {
  color: #cfc6e6;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: white;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0.7rem 1rem;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .stats-grid,
  .card-grid,
  .usecase-grid,
  .feature-columns,
  .benefit-grid,
  .industry-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .slider {
    min-height: 320px;
  }

  .trust-bar .container {
    justify-content: flex-start;
  }
}
