:root {
  --bg: #f7f8ff;
  --ink: #101127;
  --muted: #697089;
  --violet: #5b3df5;
  --violet-dark: #211466;
  --cyan: #25d7ff;
  --lime: #d9ff63;
  --card: #ffffff;
  --line: #dde1f2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #eef1ff 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1160px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(53, 58, 100, 0.12);
}

.logo {
  color: var(--violet);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.lang {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 900;
}

.hero {
  width: min(1160px, calc(100% - 36px));
  margin: 64px auto 100px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(91, 61, 245, 0.1);
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-content > p:not(.pill),
.section-copy > p:not(.pill),
.matrix p,
.lanes p,
.insight-list p,
footer p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-buttons a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.hero-buttons a:first-child {
  background: var(--violet);
  color: white;
}

.hero-buttons a:last-child {
  border: 1px solid var(--line);
  background: white;
}

.dashboard {
  border-radius: 34px;
  overflow: hidden;
  background: var(--violet-dark);
  color: white;
  box-shadow: 0 34px 100px rgba(91, 61, 245, 0.3);
}

.dash-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dash-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
}

.dash-top span:nth-child(2) {
  background: var(--lime);
}

.dash-top span:nth-child(3) {
  background: #ff74c8;
}

.dash-body {
  min-height: 430px;
  padding: 28px;
  display: grid;
  gap: 24px;
}

.chart {
  min-height: 190px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 215, 255, 0.22), rgba(217, 255, 99, 0.2)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px),
    linear-gradient(160deg, transparent 0 45%, var(--cyan) 46% 50%, transparent 51%),
    linear-gradient(30deg, transparent 0 35%, var(--lime) 36% 42%, transparent 43%);
}

.dash-lines {
  display: grid;
  gap: 10px;
}

.dash-lines i {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.dash-lines i:nth-child(1) {
  width: 92%;
}

.dash-lines i:nth-child(2) {
  width: 76%;
}

.dash-lines i:nth-child(3) {
  width: 84%;
}

.dash-lines i:nth-child(4) {
  width: 62%;
}

.deploy-card {
  padding: 22px;
  border-radius: 24px;
  background: white;
  color: var(--ink);
}

.deploy-card b {
  display: block;
  font-size: 1.4rem;
}

.deploy-card small {
  color: var(--muted);
}

.product-suite,
.service-matrix,
.roadmap,
.insights,
footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 100px;
}

.product-suite {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.section-copy,
.suite-grid article,
.matrix article,
.lanes article,
.insight-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(53, 58, 100, 0.08);
}

.section-copy {
  padding: 32px;
}

.section-copy h2,
.service-matrix h2,
.roadmap-heading h2,
.insights h2,
footer h2 {
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.suite-grid {
  display: grid;
  gap: 18px;
}

.suite-grid article {
  padding: 28px;
}

.suite-grid span {
  color: var(--violet);
  font-weight: 950;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.matrix article {
  padding: 26px;
  min-height: 280px;
}

.matrix h3,
.lanes h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.roadmap-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lanes article {
  padding: 26px;
  border-top: 6px solid var(--violet);
}

.lanes b {
  color: var(--violet);
}

.insights {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.insight-list {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.insight-list p {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.insight-list p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

footer {
  margin-bottom: 28px;
  padding: 36px;
  border-radius: 34px;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

footer .pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan);
}

address {
  display: grid;
  align-content: center;
  gap: 12px;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 920px) {
  .header,
  .hero,
  .product-suite,
  .matrix,
  .lanes,
  .insights {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
  }

  footer {
    display: grid;
  }
}
