body {
  --body-bg: var(--base);
  --fixed-cell-width: 120px;
  --bg-dark-gradient: linear-gradient(
    260.83deg,
    hsl(219, 48%, 19%) 0%,
    hsl(219, 67%, 6%) 100.27%
  );
  --warn: hsl(36, 100%, 50%);

  overflow-x: hidden;
  background: var(--body-bg);
}

body.dark {
  --body-bg: var(--page-base);
}

@media (prefers-color-scheme: dark) {
  body.auto {
    --body-bg: var(--page-base);
  }
}

@media (min-width: 800px) {
  body {
    --fixed-cell-width: 196px;
  }
}

h2,
.h2 {
  font-size: 3.6rem;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.fill-container {
  width: 100vw;
  max-width: 100vw;
  overflow: auto;
  padding: 100px var(--container-padding);
}

@media (min-width: 1200px) {
  body main {
    --container-width: 1080px;
    --container-padding: 0;
  }
}

body footer {
  border-top: 1px solid var(--border-color);
}

.max-width-620 {
  max-width: 620px;
}

.bg-blur {
  pointer-events: none;
  position: absolute;
  width: 100vw;
  max-width: 590px;
  height: 100vw;
  max-height: 590px;
  margin: 0 auto;
  top: -25%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #645df9 -86.4deg,
    #645df9 28.8deg,
    #ff6778 108deg,
    #aa6eee 151.2deg,
    #8d99ff 230.4deg,
    #645df9 273.6deg,
    #645df9 388.8deg
  );
  opacity: 0.15;
  filter: blur(25vw);
  border-radius: 50%;
}

@media (min-width: 590px) {
  .bg-blur {
    filter: blur(136px);
  }
}

.bg-dark-gradient {
  background: var(--bg-dark-gradient);
  color: #ffffff;
}

.fixed-width-table-holder {
  max-width: 100%;
  overflow-x: auto;
}

.column-highlight {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(var(--fixed-cell-width) + 1px);
  height: 100%;
  background: linear-gradient(-245deg, #ffffff 0%, #645df9 100%);
  mix-blend-mode: color-dodge;
  filter: blur(155px);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fixed-width-table {
  position: relative;
  font-size: 1.6rem;
  border-collapse: collapse;
}

.fixed-width-table tr {
  background: unset;
}

.fixed-width-table td,
.fixed-width-table th {
  box-sizing: border-box;
  min-width: var(--fixed-cell-width);
  max-width: var(--fixed-cell-width);
  width: var(--fixed-cell-width);
  height: 64px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  border: 1px solid hsla(207, 12%, 43%, 0.2);
}

.fixed-width-table th {
  padding: 18px;
}

.fixed-width-table th img {
  vertical-align: middle;
}

.fixed-width-table td:first-child,
.fixed-width-table th:first-child {
  width: 300px;
  text-align: left;
  line-height: 1.4;
}

.fixed-width-table td.warn {
  color: var(--warn);
}

details summary {
  cursor: pointer;
}

details[open] summary img {
  transform: rotate(180deg);
}

.gap-m32-80 {
  gap: 32px;
}

@media (min-width: 798px) {
  .gap-m32-80 {
    gap: 80px;
  }
}

/* Ellipse 3 */
.ellipse {
  position: absolute;
  width: 193.77px;
  height: 762.8px;
  background: linear-gradient(180deg, #ffffff 0%, #645df9 100%);
  mix-blend-mode: color-dodge;
  filter: blur(155px);
  flex: none;
  flex-grow: 0;
  border-radius: 50%;
}

.ellipse-1 {
  right: 50px;
  bottom: -81.12px;
  transform: rotate(-34.7deg);
}

.ellipse-2 {
  left: -253.29px;
  top: 12px;
  transform: rotate(-120deg);
}

.fill-padding-16 {
  margin-left: -16px;
  margin-right: -16px;
}

.shadow-image {
  box-shadow: 0 28px 20px -24px hsla(219, 37%, 18%, 0.24);
  border-radius: 16px;
}

.video-container {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}
