._fcc {
  display: flex;
  justify-content: center;
  align-items: center;
}
._fcfs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
._fcfe {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
._fcsb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
._fwcc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.df {
  display: flex;
}
.fdr {
  flex-direction: row;
}
.fdc {
  flex-direction: column;
}
.fww {
  flex-wrap: wrap;
}
.jcc {
  justify-content: center;
}
.jcsb {
  justify-content: space-between;
}
.aic {
  align-items: center;
}
.posr {
  position: relative;
}
.posa {
  position: absolute;
}
.gap2 {
  gap: 2rem;
}
.fg0 {
  flex-grow: 0;
}
.fg1 {
  flex-grow: 1;
}
.fg2 {
  flex-grow: 2;
}
.dg {
  display: grid;
}
.gtc100 {
  grid-template-columns: 100%;
}
.gtc50-50 {
  grid-template-columns: 50% 50%;
}
.mr1vw {
  margin-right: 1vw;
}
.pr {
  position: relative;
}
.pen {
  pointer-events: none;
}
.w100p {
  width: 100%;
}
.h100p {
  height: 100%;
}
.container {
  padding: 1vw;
  margin: 1vh;
  background: #fff;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-top-left-radius: 4px;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 4px 4px 0px 0px #c3e6f5;
  position: relative;
}
.container:hover {
  box-shadow: 4px 4px 0px 0px #a5daf0;
}
.container_inverse {
  padding: 1vw;
  margin: 1vh;
  margin-right: 0;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-bottom-right-radius: 4px;
  border-left: 1px solid #c2c2c2;
  border-top: 1px solid #c2c2c2;
  border-top-left-radius: 4px;
  box-shadow: -4px -4px 0px 0px #c3e6f5;
}
.data-panel {
  background: #fff;
  border: 2px solid #c2c2c2;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
}
.data-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #96d4ee 0%, #a5daf0 50%, #c3e6f5 100%);
}
.chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
.ceots__sites__button {
  display: inline-block;
  padding: 0.5rem 2rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.1s ease;
  border: 1px solid #000;
  border-radius: 2px;
  text-align: center;
  box-shadow: 2px 2px 0px 0px #a5daf0;
  cursor: pointer;
  position: relative;
}
.ceots__sites__button:hover {
  box-shadow: 4px 4px 0px 0px #a5daf0;
  transform: translateY(-1px);
}
.ceots__sites__button.primary {
  background-color: #000;
  color: #fff;
  box-shadow: 2px 2px 0px 0px #000;
}
.ceots__sites__button.primary:hover {
  box-shadow: 4px 4px 0px 0px #000;
}
.ceots__sites__button.secondary {
  background-color: #fff;
  color: #000;
  border-color: #000;
}
.ceots__sites__button.secondary:hover {
  box-shadow: 4px 4px 0px 0px #a5daf0;
}
* {
  transition-delay: 0;
  transition-duration: 0.1s;
  transition-property: all;
  transition-timing-function: ease;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: 'Colfax Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 3rem 2rem;
  overflow: hidden;
  position: relative;
}
section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header[ceots__sites="header"] {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 0.75rem 2rem;
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #c2c2c2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
header[ceots__sites="header"] .header__left {
  flex: 0 0 auto;
  gap: 2rem;
}
header[ceots__sites="header"] nav {
  padding: 0.5rem 0;
}
header[ceots__sites="header"] ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
header[ceots__sites="header"] ul li {
  list-style-type: none;
  padding: 0 1rem;
}
header[ceots__sites="header"] ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: color 0.1s ease;
}
header[ceots__sites="header"] ul li a:hover {
  color: #2c5aa0;
}
header[ceots__sites="header"] a[ceots__sites="logo"] {
  display: flex;
  align-items: center;
  height: 60px;
  margin-right: 2rem;
}
header[ceots__sites="header"] a[ceots__sites="logo"] img[ceots__sites="logo__header"] {
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
header[ceots__sites="header"] .header__terminal[ceots__sites="terminal"] {
  flex: 1 1 auto;
  max-width: 600px;
  margin: 0 2rem;
}
header[ceots__sites="header"] .header__terminal[ceots__sites="terminal"] pre[ceots__sites="terminal__content"] {
  margin: 0;
  padding: 0.5rem 1rem;
  background-color: #1a1a1a;
  color: #0f0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-top-left-radius: 4px;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 2px 2px 0px 0px rgba(165,218,240,0.3);
}
header[ceots__sites="header"] .header__terminal[ceots__sites="terminal"] pre[ceots__sites="terminal__content"] .terminal__prompt {
  color: #96d4ee;
  font-weight: bold;
  margin-right: 0.5rem;
}
header[ceots__sites="header"] .header__terminal[ceots__sites="terminal"] pre[ceots__sites="terminal__content"] .terminal__message {
  color: #0f0;
  animation: terminalBlink 1s ease-in-out;
}
@-moz-keyframes terminalBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes terminalBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes terminalBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes terminalBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  header[ceots__sites="header"] {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  header[ceots__sites="header"] .header__left {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  header[ceots__sites="header"] .header__terminal[ceots__sites="terminal"] {
    width: 100%;
    margin: 1rem 0;
  }
  header[ceots__sites="header"] .header__terminal[ceots__sites="terminal"] pre[ceots__sites="terminal__content"] {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  header[ceots__sites="header"] nav {
    width: 100%;
    padding: 0.5rem 0;
  }
  header[ceots__sites="header"] nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  header[ceots__sites="header"] a[ceots__sites="logo"] {
    margin: 0.5rem 0;
  }
}
footer[ceots__sites="footer"] {
  background-color: #f5f5f5;
  padding: 3rem 2rem 1rem;
  color: #333;
  margin-top: auto;
  border-top: 1px solid #e0e0e0;
}
footer[ceots__sites="footer"] .footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  footer[ceots__sites="footer"] .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
footer[ceots__sites="footer"] .footer__column h3 {
  color: #333;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
footer[ceots__sites="footer"] .footer__column.brand img {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}
footer[ceots__sites="footer"] .footer__column.contact address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1rem;
}
footer[ceots__sites="footer"] .footer__column.contact .email,
footer[ceots__sites="footer"] .footer__column.contact .phone {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
footer[ceots__sites="footer"] .footer__column.contact .email:hover,
footer[ceots__sites="footer"] .footer__column.contact .phone:hover {
  text-decoration: underline;
}
footer[ceots__sites="footer"] .footer__column.contact .social__links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  footer[ceots__sites="footer"] .footer__column.contact .social__links {
    justify-content: center;
  }
}
footer[ceots__sites="footer"] .footer__column.contact .social__links a {
  color: #333;
  font-size: 1.2rem;
}
footer[ceots__sites="footer"] .footer__column.contact .social__links a:hover {
  color: #2c5aa0;
}
footer[ceots__sites="footer"] .footer__column.links nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer[ceots__sites="footer"] .footer__column.links nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}
footer[ceots__sites="footer"] .footer__column.links nav ul li a:hover {
  text-decoration: underline;
}
footer[ceots__sites="footer"] .footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
footer[ceots__sites="footer"] .footer__bottom p {
  font-size: 0.8rem;
  opacity: 0.8;
}
/* Coming Soon Overlay - Global Styles with partner_split design */
.coming-soon-overlay {
  position: relative;
  overflow: hidden;
}
.coming-soon-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.95);
  z-index: 10;
  pointer-events: all;
}
.overlay-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  padding: 1.5rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  z-index: 11;
  white-space: nowrap;
  letter-spacing: -0.25px;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  border-top-left-radius: 4px;
  border-right: 2px solid #c2c2c2;
  border-bottom: 2px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 6px 6px 0px 0px #a5daf0;
  animation: comingSoonPulse 2s ease-in-out infinite;
}
@-moz-keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 6px 6px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 8px 8px 0px 0px #c3e6f5;
  }
}
@-webkit-keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 6px 6px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 8px 8px 0px 0px #c3e6f5;
  }
}
@-o-keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 6px 6px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 8px 8px 0px 0px #c3e6f5;
  }
}
@keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 6px 6px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 8px 8px 0px 0px #c3e6f5;
  }
}
/* Disable interactions for coming soon items */
.coming-soon-overlay button,
.coming-soon-overlay input,
.coming-soon-overlay textarea,
.coming-soon-overlay select,
.coming-soon-overlay a {
  pointer-events: none;
  opacity: 0.4;
  filter: grayscale(100%);
}
/* Special styling for the form overlay */
.contact-form.coming-soon-overlay .overlay-message {
  top: 40% /* Position higher for better visibility on the form */;
}
/* Smaller overlay message for sidebar sections */
aside .coming-soon-overlay .overlay-message {
  font-size: 1rem;
  padding: 1rem 1.75rem;
  box-shadow: 4px 4px 0px 0px #a5daf0;
}
@-moz-keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 4px 4px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 6px 6px 0px 0px #c3e6f5;
  }
}
@-webkit-keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 4px 4px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 6px 6px 0px 0px #c3e6f5;
  }
}
@-o-keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 4px 4px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 6px 6px 0px 0px #c3e6f5;
  }
}
@keyframes comingSoonPulse {
  0%, 100% {
    box-shadow: 4px 4px 0px 0px #a5daf0;
  }
  50% {
    box-shadow: 6px 6px 0px 0px #c3e6f5;
  }
}
/* Article overlay in docs - position higher */
article.coming-soon-overlay .overlay-message {
  top: 30% /* Position higher for article sections */;
}
