:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  background: #f8fafc;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: linear-gradient(180deg, #edf2ff 0%, #f8fafc 100%);
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #4338ca;
  color: #fff;
  font-weight: 800;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

.brand-tag {
  margin: 0.15rem 0 0;
  color: #475569;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  padding: 0.95rem 1.55rem;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #4338ca;
  color: #fff;
  box-shadow: 0 18px 40px rgba(67, 56, 202, 0.16);
}

.button-secondary {
  background: rgba(67, 56, 202, 0.08);
  color: #4338ca;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4338ca;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 1.2rem 0 1.8rem;
  max-width: 610px;
  color: #475569;
  font-size: 1.05rem;
}

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

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.96));
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.06);
}

.hero-card-pill {
  display: inline-flex;
  padding: 0.75rem 1rem;
  background: #e0e7ff;
  border-radius: 999px;
  color: #3730a3;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.hero-stats div {
  padding: 1.25rem 1.3rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-stats h2 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
}

.hero-stats p {
  margin: 0;
  color: #64748b;
}

.section {
  padding: 4rem 0;
}

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

.section-heading h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  padding: 2rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.05);
}

.product-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef2ff;
  font-size: 1.35rem;
}

.product-card h3 {
  margin: 1.2rem 0 0.8rem;
}

.product-card p {
  margin: 0 0 1.3rem;
  color: #475569;
}

.product-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #334155;
}

.product-card li {
  margin-bottom: 0.85rem;
}

.solutions-grid {
  display: grid;
  gap: 2rem;
}

.solutions-list {
  display: grid;
  gap: 1rem;
}

.solution-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.solution-card h4 {
  margin: 0 0 0.75rem;
}

.solution-card p {
  margin: 0;
  color: #475569;
}

.section-cta {
  padding: 3rem 0;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
  padding: 2rem;
  border-radius: 28px;
  color: #fff;
}

.cta-card h2 {
  margin: 0.25rem 0 0.8rem;
}

.site-footer {
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  color: #475569;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.75rem;
  color: #111827;
}

.footer-grid p {
  margin: 0.5rem 0 0;
}

@media (min-width: 900px) {
  .hero-grid,
  .solutions-grid {
    grid-template-columns: 1.2fr 0.9fr;
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-card,
  .product-card,
  .solution-card,
  .cta-card {
    padding: 1.75rem;
  }
}
