.ce-home * {
  box-sizing: border-box;
}
.ce-home a {
  color: inherit;
  text-decoration: none;
}
.ce-home a:focus-visible {
  outline: 3px solid #146ab4;
  outline-offset: 6px;
}
.ce-home p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.ce-home h1,
.ce-home h2,
.ce-home h3 {
  font-weight: 550;
  margin: 0;
  letter-spacing: -0.045em;
}
.ce-home h1 {
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.06;
}
.ce-home h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.15;
}
.ce-home h3 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.ce-home .wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.ce-home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--blue);
  color: white;
  border-radius: 6px;
  padding: 17px 23px;
  font-weight: 550;
  font-size: 15px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.ce-home .button:hover {
  background: #105892;
  transform: translateY(-2px);
}
.ce-home .button.small {
  padding: 12px 19px;
}
.ce-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}
.ce-home .text-link:hover {
  color: var(--blue);
}
.ce-home .eyebrow {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  color: var(--blue);
  margin-bottom: 22px;
}
.ce-home .hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 64px;
  padding-block: 83px 76px;
}
.ce-home .intro {
  max-width: 550px;
  font-size: 18px;
  line-height: 1.75;
  margin-top: 27px;
}
.ce-home .actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 31px;
}
.ce-home .hero-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  font-size: 12px;
}
.ce-home .hero-note svg {
  color: var(--blue);
  flex-shrink: 0;
}
.ce-home .architecture {
  margin: 0;
  background: var(--pale);
  border: 1px solid #e1eaf1;
  border-radius: 14px;
  padding: 29px 24px 23px;
}
.ce-home .diagram-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #59738b;
  margin-bottom: 39px;
}
.ce-home .business-node {
  width: 85%;
  margin: auto;
  background: white;
  border: 1px solid #cddce9;
  border-radius: 7px;
  padding: 18px 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.ce-home .connector.vertical {
  height: 33px;
  width: 1px;
  background: #91b5d3;
  margin: auto;
}
.ce-home .platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  position: relative;
}
.ce-home .platform-grid:before {
  content: '';
  position: absolute;
  top: -17px;
  left: 16%;
  right: 16%;
  height: 17px;
  border: 1px solid #91b5d3;
  border-bottom: 0;
}
.ce-home .platform-grid > div {
  position: relative;
  background: white;
  border: 1px solid #cadae7;
  border-radius: 8px;
  min-height: 127px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.ce-home .platform-grid > div:before {
  content: '';
  position: absolute;
  top: -17px;
  height: 17px;
  width: 1px;
  background: #91b5d3;
}
.ce-home .platform-grid svg {
  color: var(--blue);
  width: 25px;
  height: 25px;
  stroke-width: 1.5;
}
.ce-home .platform-grid strong {
  font-size: 12px;
  font-weight: 650;
}
.ce-home .platform-grid span {
  font-size: 12px;
  text-align: center;
  color: #5c7081;
}
.ce-home .foundation {
  background: #e1edf7;
  border: 1px solid #cbdfea;
  border-radius: 7px;
  padding: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 550;
}
.ce-home .foundation span + span {
  color: #496a84;
  font-size: 12px;
  font-weight: 400;
}
.ce-home figcaption {
  text-align: center;
  font-size: 12px;
  color: #60768a;
  margin-top: 23px;
}
.ce-home .trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 32px;
}
.ce-home .trust > p { margin-bottom: 26px; }
.ce-home .client-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 24px;
}
.ce-home .logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 68px;
}
.ce-home .client-logos img {
  object-fit: contain;
  width: 100%;
  max-width: 126px;
  height: 48px;
}
.ce-home .section {
  padding-block: 92px;
}
.ce-home .section-heading > p:last-child {
  margin-top: 20px;
  max-width: 540px;
}
.ce-home .services {
  margin-top: 44px;
  display: grid;
}
.ce-home .service {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.ce-home .service > svg {
  color: var(--blue);
  margin-top: 3px;
}
.ce-home .service h3 {
  margin-bottom: 9px;
}
.ce-home .service p {
  max-width: 780px;
}
.ce-home .service-label {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}
.ce-home .service:hover h3 {
  color: var(--blue);
}
.ce-home .work-section {
  background: var(--pale);
}
.ce-home .work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.ce-home .feature-work {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
}
.ce-home .feature-work h3 {
  font-size: 30px;
  max-width: 400px;
  margin-bottom: 20px;
}
.ce-home .feature-work .eyebrow {
  font-size: 12px;
  display: block;
}
.ce-home .process-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--pale);
  padding: 23px 17px;
  margin: 28px 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}
.ce-home .process-line svg {
  width: 22px;
}
.ce-home .feature-work > p { max-width: 760px; }
.ce-home .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 48px;
  margin-top: 40px;
}
.ce-home .customer-testimonial {
  margin: 0;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ce-home .customer-testimonial .quote-logo {
  width: 120px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}
.ce-home .customer-testimonial blockquote {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--foreground);
}
.ce-home .customer-testimonial figcaption {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.7;
}
.ce-home .customer-testimonial figcaption b,
.ce-home .customer-testimonial figcaption span { display: block; }
.ce-home .product-list {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  margin-top: 43px;
}
.ce-home .product-list a {
  padding: 25px 0;
  border-top: 2px solid #c6dced;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.ce-home .availability {
  font-size: 12px;
  color: var(--blue);
  font-weight: 550;
  display: block;
  margin-bottom: 20px;
}
.ce-home .availability.muted {
  color: var(--muted);
}
.ce-home .product-list h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.ce-home .product-list p {
  font-size: 16px;
}
.ce-home .product-list svg {
  color: var(--blue);
}
.ce-home .product-list a:hover h3 {
  color: var(--blue);
}
.ce-home .approach {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.ce-home .approach > div > p:not(.eyebrow) {
  margin: 24px 0;
}
.ce-home .steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
}
.ce-home .steps li {
  display: flex;
  gap: 20px;
}
.ce-home .steps li > svg {
  margin-top: 6px;
  color: var(--blue);
  flex-shrink: 0;
}
.ce-home .steps h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.ce-home .steps p {
  font-size: 16px;
}
.ce-home .contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: #eaf3fa;
  border-radius: 12px;
  padding: 52px;
  margin-bottom: 75px;
}
.ce-home .contact p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 490px;
}
.ce-home .contact .reply {
  font-size: 12px;
  text-align: center;
}
@media (min-width: 1500px) {
  .ce-home .hero {
    padding-block: 105px;
  }
  .ce-home .wrap {
    width: min(1280px, calc(100% - 120px));
  }
}
@media (max-width: 1050px) {
  .ce-home .client-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ce-home .wrap {
    width: calc(100% - 56px);
  }
  .ce-home .hero {
    gap: 30px;
    padding-block: 60px;
  }
  .ce-home .architecture {
    padding: 22px 16px;
  }
  .ce-home .actions {
    gap: 18px;
  }
.ce-home .client-logos {
    gap: 20px;
  }
  .ce-home .approach {
    gap: 50px;
  }
  .ce-home .contact {
    padding: 38px;
  }
  .ce-home .platform-grid span {
    font-size: 12px;
  }
  .ce-home .platform-grid strong {
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  .ce-home .client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .ce-home .testimonial-grid { grid-template-columns: 1fr; gap: 8px; }
  .ce-home .wrap {
    width: calc(100% - 40px);
  }
  .ce-home .hero {
    grid-template-columns: 1fr;
    padding-block: 45px;
    gap: 40px;
  }
  .ce-home .hero h1 {
    font-size: clamp(40px, 10.5vw, 60px);
  }
  .ce-home .intro {
    font-size: 16px;
  }
  .ce-home .eyebrow {
    font-size: 12px;
  }
  .ce-home .actions {
    gap: 22px;
    flex-wrap: wrap;
  }
  .ce-home .button,
  .ce-home .text-link {
    font-size: 14px;
  }
  .ce-home .architecture {
    padding: 25px 15px;
  }
  .ce-home .platform-grid strong {
    font-size: 12px;
  }
  .ce-home .section {
    padding-block: 58px;
  }
  .ce-home .service {
    grid-template-columns: 32px 1fr 20px;
    gap: 12px;
    padding-block: 25px;
  }
  .ce-home .service h3 {
    font-size: 22px;
  }
  .ce-home .work-grid,
  .ce-home .approach,
  .ce-home .product-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ce-home .feature-work {
    padding: 26px;
  }
  .ce-home .feature-work h3 {
    font-size: 28px;
  }
.ce-home .product-list a {
    flex-direction: row;
    padding: 25px 0 10px;
  }
  .ce-home .product-list svg {
    flex-shrink: 0;
  }
  .ce-home .availability {
    margin-bottom: 10px;
  }
  .ce-home .product-list {
    gap: 15px;
  }
  .ce-home .approach {
    gap: 36px;
  }
  .ce-home .contact {
    display: block;
    padding: 30px 24px;
    margin-bottom: 45px;
  }
  .ce-home .contact > div + div {
    margin-top: 26px;
  }
  .ce-home .contact .reply {
    text-align: left;
  }
  .ce-home .contact h2 {
    font-size: 36px;
  }
  .ce-home .foundation {
    flex-direction: column;
  }
  .ce-home .process-line {
    gap: 5px;
    padding: 20px 10px;
    font-size: 12px;
  }
  .ce-home .process-line svg {
    width: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ce-home * {
    transition: none !important;
  }
}

.ce-home .architecture {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ce-home .connection-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.ce-home .architecture > div,
.ce-home .architecture > figcaption {
  position: relative;
}
.ce-home .platform-grid > div {
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.ce-home .platform-grid > div:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}
