:root {
  color: #152033;
  background: #ffffff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(241, 248, 255, 0.96) 0%, rgba(255, 255, 255, 1) 34%),
    #ffffff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 56px;
  border-bottom: 1px solid rgba(126, 145, 171, 0.2);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d6df2 0%, #19b6a6 100%);
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: #526174;
  font-size: 14px;
}

.site-nav a:hover {
  color: #1d6df2;
  background: #edf5ff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  min-height: 680px;
  margin: 0 auto;
  padding: 58px 32px 42px;
}

.eyebrow,
.section-heading p {
  margin: 0 0 14px;
  color: #1b8d83;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: transparent;
  font-size: 72px;
  font-weight: 850;
  line-height: 1;
  background: linear-gradient(96deg, #1d6df2 0%, #19b6a6 56%, #8d4cc4 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 620px;
  margin: 30px 0 0;
  color: #526174;
  font-size: 22px;
  line-height: 1.7;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(29, 109, 242, 0.22);
  border-radius: 8px;
  color: #1d6df2;
  font-weight: 800;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(29, 109, 242, 0.1);
}

.hero-links .primary-link {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #1d6df2 0%, #19b6a6 100%);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(126, 145, 171, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(29, 109, 242, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 109, 242, 0.09) 1px, transparent 1px),
    linear-gradient(145deg, #f9fcff 0%, #eef8f7 100%);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 80px rgba(21, 32, 51, 0.12);
}

.chip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  border: 1px solid rgba(29, 109, 242, 0.26);
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(125, 211, 252, 0.28), transparent 30%),
    linear-gradient(135deg, #17365f 0%, #111827 100%);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.28);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.chip::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(125, 211, 252, 0.36);
  border-radius: 8px;
  content: "";
}

.chip::after {
  position: absolute;
  inset: -14px;
  background:
    linear-gradient(#7dd3fc, #7dd3fc) top left / 46px 2px no-repeat,
    linear-gradient(#7dd3fc, #7dd3fc) bottom right / 46px 2px no-repeat,
    linear-gradient(#7dd3fc, #7dd3fc) top right / 2px 46px no-repeat,
    linear-gradient(#7dd3fc, #7dd3fc) bottom left / 2px 46px no-repeat;
  opacity: 0.7;
  content: "";
}

.chip-label {
  align-self: end;
  color: #bfe8ff;
  font-size: 12px;
  font-weight: 800;
}

.chip strong {
  align-self: start;
  font-size: 34px;
}

.signal {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #19b6a6, transparent);
}

.signal-a {
  top: 112px;
  left: 24px;
  width: 300px;
}

.signal-b {
  right: 28px;
  bottom: 104px;
  width: 260px;
}

.signal-c {
  right: 70px;
  top: 72px;
  width: 180px;
  background: linear-gradient(90deg, transparent, #8d4cc4, transparent);
}

.metrics,
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 92px;
}

.metrics article,
.panel {
  border: 1px solid rgba(126, 145, 171, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(21, 32, 51, 0.08);
}

.metrics article {
  padding: 24px;
}

.metrics span,
.site-footer {
  color: #6a7788;
}

.metrics strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

.two-column,
.focus-grid,
.workflow-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.panel,
.workflow-step {
  padding: 28px;
}

.panel h3,
.workflow-step h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.panel p,
.about-text,
.workflow-step p {
  margin: 0;
  color: #526174;
  font-size: 16px;
  line-height: 1.8;
}

.focus-grid .panel span,
.workflow-step span {
  display: block;
  margin-bottom: 32px;
  color: #1d6df2;
  font-size: 13px;
  font-weight: 900;
}

.workflow-step {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(126, 145, 171, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(21, 32, 51, 0.08);
}

.workflow-step::after {
  position: absolute;
  top: 38px;
  right: -11px;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(29, 109, 242, 0.35);
  border-right: 2px solid rgba(29, 109, 242, 0.35);
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.workflow-step:last-child::after {
  display: none;
}

.about-section {
  padding-bottom: 118px;
}

.about-text {
  max-width: 860px;
  padding: 28px;
  border: 1px solid rgba(126, 145, 171, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(21, 32, 51, 0.08);
}

.product-link-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin-top: 18px;
  padding: 22px 24px;
  gap: 20px;
  border: 1px solid rgba(29, 109, 242, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(29, 109, 242, 0.08), rgba(25, 182, 166, 0.1));
}

.product-link-panel div {
  display: grid;
  gap: 7px;
}

.product-link-panel span {
  color: #1b8d83;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-link-panel strong {
  color: #152033;
  font-size: 22px;
}

.product-link-panel p {
  margin: 0;
  color: #526174;
  line-height: 1.7;
}

.product-link-panel a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #1d6df2 0%, #19b6a6 100%);
  box-shadow: 0 14px 34px rgba(29, 109, 242, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px 56px;
  border-top: 1px solid rgba(126, 145, 171, 0.18);
  background: #f8fbff;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: #152033;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    height: auto;
    padding: 16px 24px;
    gap: 14px;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .two-column,
  .focus-grid,
  .workflow-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .workflow-step {
    min-height: auto;
  }

  .workflow-step::after {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-link-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .hero-links a {
    width: 100%;
    justify-content: center;
  }
}
