* {
    margin: 0;
    padding: 0;
    font-weight: 400;
    word-break: break-word;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f5f5f4;
}

img {
  pointer-events: none;
  user-select: none;
  width: 100%;
}

.container {
    max-width: 1180px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

.container.padding{
    padding-top: 120px;
    padding-bottom: 120px;
}

/* UI Components */
.cta-btn-group{
    display: flex;
    gap: 10px;
    margin-top: 45px;
}

.cta-btn-group\:center{
    justify-content: center;
}

.btn{
    background-color: #fff;
    color: #000;
    padding: 10px 30px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.btn-line{
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.btn-line i {
    margin-left: 5px;
    transition: 0.3s;
}

.btn-line:hover i{
    margin-left: 10px;
}

/* tab */
.tab-btn-group{
    margin-top: 30px;
    margin-bottom: -1px;
    display: flex;
}

.tab-btn{
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #D4D4D8;
    transition: 0.3s;
    cursor: pointer;
}

.tab-btn.active{
    color: #fff;
    border-color: #000000;
    background-color: #000000;
    transition: 0.3s;
}

.tab-items {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
}

.tab-items.active {
    display: block;
}

/* visual-section */
.visual-section {
    min-height: 650px;
    height: 85vh;
    max-height: 100vh;
    width: 100%;
    background: linear-gradient(to left, #0A2160, #000000 70%);
    display: flex;
    align-items: center;
    color: #fff;
}

/* features */
.features p.text-base{
    display: flex;
    align-items: center;
    gap: 7px;
}

.features img{
    width: 1.7rem;
    display: inline-block;
}

/* Support Editor */
.support-editor .white-box{
    padding: 50px;
    flex-direction: row;
    gap: 100px;
}

.support-editor .white-box\:center{
    align-items: center;
}

.support-editor .editor-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.support-editor .editor-list .item{
    border: 1px solid #D4D4D8;
    margin-left: -1px;
    margin-top: -1px;
    padding: 20px;
    width: 90px;
    height: 90px;
}

.support-editor .editor-list .item-more{
    border: 1px solid #D4D4D8;
    margin-left: -1px;
    margin-top: -1px;
    padding: 20px;
    grid-column: span 2;
    height: 90px;
    display: flex;
    align-items: center;
}

/* vim-integration */
.vim-integration{
    text-align: center;
    background-color: #000;
    color: #fff;
}

.vim-integration img{
    display: block;
    width: 80%;
    margin: 0 auto;
}

/* performance */
.performance .grid{
    grid-template-columns: 1fr 1fr 1fr;
}

/* data-connectors */
.data-connectors{
    color: #fff;
    background: linear-gradient(to left, #0A2160, #000000 70%);
}

.data-connectors .grid{
    gap: 20px;
    grid-template-columns: 1.3fr 1fr;
}

/* font util */
.text-xl{
    font-size: 46px;
    line-height: 68px;
}

.text-lg{
    font-size: 36px;
    line-height: 48px;
}

.text-base{
    font-size: 24px;
    line-height: 36px;
}

.text-sm{
    font-size: 20px;
    line-height: 30px;
}


.text-xl.margin{
    margin-bottom: 20px;
}

.text-lg.margin{
    margin-bottom: 15px;
}

.text-base.margin{
    margin-bottom: 15px;
}

.text-sm.margin{
    margin-bottom: 10px;
}

.bold{
    font-weight: bold;
}

.highlights{
    background-color: #000;
    color: #fff;
    padding: 0 15px;
    display: inline-block;
}

/* util */
.grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.padding{
    padding: 20px;
}

.section-margin{
    margin-top: 150px;
}
.border{
    border: 1px solid #D4D4D8;
}

.white-box{
    border: 1px solid #D4D4D8;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    margin-left: -1px;
}

.white-box\:center{
    justify-content: center;
}

.white-box\:start{
    justify-content: flex-start;
}

.margin-left-gap{
    margin-left: 30px;
}

.margin-right-gap{
    margin-right: 30px;
}
