[data-el-features] {
  --el-cream: #050a0a;
  --el-sand: #0a1614;
  --el-black: #f5f3f1;
  --el-gray: #a3a3a3;
  --el-purple: #f4f4f4;
  background: #050a0a !important;
  color: #f5f3f1;
  font-family: "PP Neue Montreal", ui-sans-serif, system-ui, sans-serif;
  padding: 48px 0 40px;
}

.el-features {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1176px;
  padding: 0 24px;
  width: 100%;
}
.el-features *, .el-features *::before, .el-features *::after { box-sizing: border-box; }

.el-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.el-card {
  background: var(--el-sand);
  border-radius: 24px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.el-card--wide { grid-column: span 6; min-height: 480px; }
.el-card--sm { grid-column: span 3; min-height: 200px; }

.el-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 22px 22px 26px;
  position: relative;
  z-index: 1;
}

.el-card--omni {
  color: #fff;
}
.el-card--omni .el-card__bg {
  inset: 0;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.el-card--omni .el-card__noise {
  background-image: url("./noise.png");
  background-size: 256px;
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.el-card--omni .el-card__shade {
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.el-card--omni .el-card__label { color: rgba(255,255,255,.8); }
.el-card--omni .el-card__desc { color: #fff; }

.el-card__label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.el-card__desc {
  color: #f5f3f1;
  font-size: 14px;
  line-height: 1.45;
  margin: 12px 0 0;
  max-width: 36ch;
  text-wrap: pretty;
}

.el-bar--cta-only {
  justify-content: flex-start;
  margin-top: 32px;
}
.el-bar--cta-only .el-cta {
  background: #f4f4f4;
  color: #0a0a0a;
  box-shadow: none;
}
.el-bar--cta-only .el-cta:hover {
  background: #ffffff;
}

.el-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 24px;
  max-width: 240px;
  padding-top: 40px;
  width: 100%;
}
.el-chat__user,
.el-chat__agent,
.el-chat__status {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  will-change: opacity, transform;
}
.el-chat.is-playing .el-chat__user,
.el-chat.is-playing .el-chat__agent,
.el-chat.is-playing .el-chat__status {
  animation: el-chat-in 0.55s cubic-bezier(0.22, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--el-i, 0) * 0.55s);
}
.el-chat.is-static .el-chat__user,
.el-chat.is-static .el-chat__agent,
.el-chat.is-static .el-chat__status {
  animation: none;
  opacity: 1;
  transform: none;
}
@keyframes el-chat-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.el-chat__user {
  align-self: flex-end;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  padding: 10px 14px;
  width: fit-content;
  max-width: 240px;
}
.el-chat__agent {
  align-self: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,.08), 0 1.7px 3.4px rgba(0,0,0,.04);
  color: #000;
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 14px;
  width: fit-content;
  max-width: 240px;
}
.el-chat__status {
  align-items: center;
  align-self: flex-start;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,.08), 0 1.7px 3.4px rgba(0,0,0,.04);
  display: flex;
  font-size: 14px;
  height: 40px;
  overflow: hidden;
}
.el-chat.is-playing .el-chat__badge svg {
  animation: el-badge-pop 0.45s cubic-bezier(0.22, 1.2, 0.36, 1) both;
  animation-delay: calc(var(--el-i, 4) * 0.55s + 0.12s);
}
@keyframes el-badge-pop {
  0% { transform: scale(0.6); opacity: 0.4; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.el-chat__badge {
  align-items: center;
  display: flex;
  flex: none;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.el-chat__status span { margin-right: 14px; }

.el-chart-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding-top: 24px;
}
.el-chart {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 1px rgba(0,0,0,.4), 0 1px 1px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.04);
  padding: 16px;
}
.el-chart__value { color: #3a3a3a; font-size: 15px; font-weight: 500; margin-top: 4px; }
.el-chart__title { font-size: 12px; font-weight: 500; color: #5a5a5a; }
.el-chart__plot {
  height: 164px;
  margin-top: 24px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.el-chart__canvas {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.el-chart__grid {
  background: rgba(0,0,0,.075);
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}
.el-chart__dates {
  color: var(--el-gray);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin-top: 8px;
}
.el-chart__tip {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 1px rgba(0,0,0,.4), 0 1.65px 3.3px rgba(0,0,0,.04);
  color: #2a2a2a;
  font-size: 12px;
  left: 72%;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  position: absolute;
  top: 8%;
  transform: translateX(calc(-100% - 16px)) translateY(8px);
  transition: opacity 0.45s ease 0.55s, transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1) 0.55s;
  z-index: 2;
}
.el-chart.is-playing .el-chart__tip {
  opacity: 1;
  transform: translateX(calc(-100% - 16px)) translateY(0);
}
.el-chart.is-static .el-chart__tip {
  opacity: 1;
  transform: translateX(calc(-100% - 16px)) translateY(0);
  transition: none;
}
.el-chart__tip-row { align-items: center; display: flex; gap: 4px; }
.el-chart__tip-row + .el-chart__tip-row { margin-top: 4px; }
.el-dot { border-radius: 50%; height: 6px; width: 6px; }
.el-dot--verified { background: #141414; }
.el-dot--shown { background: #6e6e6e; }
.el-chart__value {
  font-variant-numeric: tabular-nums;
}

.el-card--sm {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.el-card--sm.is-in {
  opacity: 1;
  transform: none;
}
.el-card--sm .el-card__inner { gap: 28px; justify-content: flex-start; padding-top: 24px; }
.el-card__icon { color: #f5f3f1; display: block; height: 24px; width: 24px; }

.el-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: space-between;
  margin-top: 40px;
}
.el-bar__left {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 12px 20px;
  min-width: 0;
}
.el-logos {
  display: flex;
  flex: none;
  gap: 16px;
}
.el-logo {
  cursor: pointer;
  height: 44px;
  outline: none;
  position: relative;
  width: 44px;
}
.el-logo svg.el-logo__frame {
  height: 54px;
  left: -5px;
  margin: 0;
  position: absolute;
  top: -5px;
  width: 54px;
}
.el-logo img {
  border-radius: 12px;
  filter: brightness(0) invert(1);
  height: 44px;
  left: 0;
  position: absolute;
  top: 0;
  width: 44px;
}
.el-logo__path {
  fill: none;
  opacity: 0;
  stroke-linecap: round;
  stroke-width: 1.5;
  transform: rotate(90deg) scale(1, -1);
  transform-box: fill-box;
  transform-origin: center;
  transition: stroke-dasharray .6s ease, opacity .2s ease;
}
.el-logo.is-active .el-logo__path {
  opacity: 1;
  stroke-dasharray: 0.93 1;
  stroke-dashoffset: 0;
  animation: el-logo-draw .7s ease forwards;
}
@keyframes el-logo-draw {
  from { stroke-dasharray: 0 1; }
  to { stroke-dasharray: 0.93 1; }
}

.el-bar__copy { min-width: 0; }
.el-bar__title {
  color: #f5f3f1;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.el-bar__title a { color: inherit; text-decoration: none; }
.el-bar__sub {
  color: var(--el-gray);
  font-size: 14px;
  margin: 6px 0 0;
  max-width: 36ch;
}

.el-cta {
  align-items: center;
  background: #141414;
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 1px rgba(0,0,0,.4), 0 1px 1px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.04);
  color: #f5f3f1; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 1px 1px rgba(0,0,0,.04);
  cursor: pointer;
  display: inline-flex;
  flex: none;
  font-size: 16px;
  font-weight: 500;
  height: 44px;
  padding: 0 20px;
  text-decoration: none;
  transition: background .2s ease;
}
.el-cta:hover { background: #1f1f1f; }

@media (max-width: 1024px) {
  .el-card--wide, .el-card--sm { grid-column: span 12; }
  .el-card--wide { min-height: 420px; }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .el-card--sm { grid-column: span 6; }
  .el-card--wide { min-height: 400px; }
}

/* neutral media tint */
.el-card--omni .el-card__bg {
  filter: grayscale(0.25) brightness(0.78) contrast(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .el-chat__user,
  .el-chat__agent,
  .el-chat__status,
  .el-card--sm,
  .el-chart__tip {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .el-chat.is-playing .el-chat__badge svg {
    animation: none !important;
  }
}
