@charset "UTF-8";
/*대시보드 자동매매*/
.controls_row--between {
    justify-content: space-between;
}

.controls_row--left {
    justify-content: flex-start;
}

.controls_row--right {
    justify-content: flex-end;
}

.auto_trade_primary {
    display: flex;
    gap: var(--space-24);
    align-items: stretch;
    margin-bottom: var(--space-30);
    padding: var(--space-24);
    border-radius: var(--radius-12);
    background: radial-gradient(circle at 0% 0%, rgba(0, 212, 170, 0.26), transparent 60%), rgba(18, 24, 32, 0.96);
    border: 1px solid rgba(0, 212, 170, 0.6);
}

.auto_trade_primary_left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.auto_trade_primary_eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.auto_trade_primary_title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
}

.auto_trade_primary_desc {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.auto_trade_primary_meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-16);
    margin-top: var(--space-16);
}
/* 자동매매 - 잔여 토큰 심플 카드 */
.auto_token_card {
  position: relative;
  margin-top: auto; /* 왼쪽 컬럼 맨 아래로 */
  padding: var(--space-8) var(--space-10);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
}

.auto_token_card::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand, #00d4aa);
  opacity: 0.8;
  margin-bottom: 4px;
}

.auto_token_label {
  margin: 0;
  color: var(--text-muted);
}

.auto_token_value {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
}


.auto_token_unit {
  margin-left: 4px;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.85;
}

@media (max-width: 640px) {
  .auto_token_card {
    padding: var(--space-6) var(--space-8);
  }
}



.auto_token_refresh{position: absolute;top: var(--space-8);right: 55px;width: 47px;height: 47px;padding: 7px 0;display: flex;flex-direction: column;align-items: center;gap: 2px;border-radius: 6px;background: rgba(255,255,255,0.04);border: 1px solid rgba(255,255,255,0.14);cursor: pointer;color: var(--text);}
.auto_token_refresh + .auto_token_refresh {
    right: 2px;
}
.auto_token_refresh:hover{
background: rgba(255,255,255,0.08);
border-color: var(--brand, #00d4aa);
}

.auto_token_refresh:focus-visible{
outline: none;
box-shadow: 0 0 0 2px rgba(0,212,170,.35);
}

.i.refresh{
display: inline-block;
width: 18px;
height: 18px;

background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;

background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 12a9 9 0 1 1-2.64-6.36' fill='none' stroke='%23c9d1d9' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 4v6h-6' fill='none' stroke='%23c9d1d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.auto_token_refresh_txt{
font-size: 10px;
line-height: 1;
opacity: .9;
white-space: nowrap;
}

@media (max-width: 640px){
.auto_token_refresh{
top: var(--space-6);
}
}
.auto_meta_item {
    font-size: 13px;
    color: var(--text-muted);
}

.auto_meta_label {
    margin-right: 6px;
}

.auto_meta_value {
    font-weight: 600;
    color: var(--text-strong);
}

.auto_status_wait {
    color: var(--info);
}

.auto_trade_primary_right {
    flex: 1 1 460px;
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.auto_fields_grid {
    position: relative;
    display: grid;
    gap: var(--space-12);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: var(--space-16);
}

.auto_field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auto_label {
    font-size: 12px;
    color: var(--text-muted);
}

.auto_field .st_input {
    height: 40px;
    padding: 4px 10px;
}

.auto_trade_primary_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
}

.auto_trade_primary_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    height: 44px;
    border-radius: 999px;
    font-weight: 700;
}

.auto_trade_primary_btn svg {
    width: 18px;
    height: 18px;
}

.auto_trade_primary_hint {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
}

.chart_group {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 1440px) {
    .auto_fields_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .auto_trade_primary {
        flex-direction: column;
    }

    .auto_trade_primary_right {
        width: 100%;
flex:1;
    }

    .auto_fields_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .auto_fields_grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .auto_trade_primary_actions {
        flex-direction: column;
        align-items: stretch;
    }

    .auto_trade_primary_btn {
        width: 100%;
        justify-content: center;
    }
}

.ai_loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.ai_loading_label {
    font-weight: 500;
}

.ai_loading_text {
    opacity: 0.8;
}

.loading_dots {
    display: inline-flex;
    gap: 3px;
}

.loading_dots span {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.2;
    animation: loadingDotBlink 1.2s infinite ease-in-out;
}

.loading_dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.loading_dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes loadingDotBlink {
    0%, 80%, 100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.auto_plan_text {
    margin: 0;
    font-size: 13px;
    color: var(--text);
}

.auto_data_section {
    margin-bottom: var(--space-16);
}

.auto_data_section .checkbox_list {
    margin-top: 4px;
}

.auto_invest_group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
}

.auto_field--half {
    flex: 1 1 0;
    min-width: 260px;
}

.auto_help_text {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
}

.auto_field_inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auto_field_inline .st_input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.auto_field_inline .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.auto_plan_text {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.auto_plan_label {
    opacity: 0.9;
}

.auto_plan_tag {
    font-size: 12px;
}

.auto_plan_suffix {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .auto_plan_text {
        flex-wrap: wrap;
    }
}

/*대시보드 자동매매 종료*/
/*셀렉트 검색*/
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select__trigger {
    width: 100%;
    height: var(--input-height, 44px);
    background: var(--bg-hover, #1c2128);
    border: 1px solid var(--border-secondary, #30363d);
    border-radius: var(--radius-6, 6px);
    padding: 11px 40px 11px 15px;
    color: var(--text, #c9d1d9);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--dur-med, 0.2s) var(--ease-standard, cubic-bezier(0.2,0,0.2,1));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select__trigger[aria-expanded="true"] {
    border-color: var(--brand, #00d4aa);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select__arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%237d8590' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: transform var(--dur-med, 0.2s) var(--ease-standard, cubic-bezier(0.2,0,0.2,1));
}

.custom-select__trigger[aria-expanded="true"] .custom-select__arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card, #161b22);
    border: 1px solid var(--brand, #00d4aa);
    border-top: none;
    border-bottom-left-radius: var(--radius-6, 6px);
    border-bottom-right-radius: var(--radius-6, 6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
    max-height: 600px;
    overflow: hidden;
    flex-direction: column;
}

.custom-select__dropdown.is-open {
    display: flex;
}

.custom-select__search {
    padding: 12px;
    border-bottom: 1px solid var(--border-secondary, #30363d);
    background: var(--bg-input, #0d1117);
}

.custom-select__search-wrapper {
    display: flex;
    gap: 8px;
}

.custom-select__search-input {
    flex: 1;
    height: 36px;
    width: 100%;
    background: var(--bg-card, #161b22);
    border: 1px solid var(--border-secondary, #30363d);
    border-radius: var(--radius-6, 6px);
    padding: 8px 12px;
    color: var(--text, #c9d1d9);
    font-size: 14px;
    transition: border-color var(--dur-med, 0.2s) var(--ease-standard, cubic-bezier(0.2,0,0.2,1));
}

.custom-select__search-input:focus {
    outline: none;
    border-color: var(--brand, #00d4aa);
}

.custom-select__search-input::placeholder {
    color: var(--text-placeholder, #484f58);
}

.custom-select__search-btn {
    height: 36px;
    padding: 0 16px;
    background: var(--brand, #00d4aa);
    color: var(--bg, #0f1419);
    border: none;
    border-radius: var(--radius-6, 6px);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-med, 0.2s) var(--ease-standard, cubic-bezier(0.2,0,0.2,1));
    white-space: nowrap;
}

.custom-select__search-btn:hover {
    background: var(--brand-hover, #00bfa0);
}

.custom-select__search-btn:focus {
    outline: 2px solid var(--brand, #00d4aa);
    outline-offset: 2px;
}

.custom-select__options {
    overflow-y: auto;
    /* max-height: 330px; */
    padding: 4px;
}

.custom-select__options::-webkit-scrollbar {
    width: 8px;
}

.custom-select__options::-webkit-scrollbar-track {
    background: var(--bg-input, #0d1117);
}

.custom-select__options::-webkit-scrollbar-thumb {
    background: var(--border-secondary, #30363d);
    border-radius: 4px;
}

.custom-select__options::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover, #484f58);
}

.custom-select__option {
    position: relative;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-6, 6px);
    color: var(--text, #c9d1d9);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background var(--dur-fast, 0.15s) var(--ease-standard, cubic-bezier(0.2,0,0.2,1));
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.custom-select__option span.pick {
position: absolute;
right: 10px;
top: 10px;
background: #00ffd0;
color: #0d1117;
font-size: 12px;
font-weight: bold;
padding: 0 10px;
border-radius: 10px;
}
.custom-select__option:hover, .custom-select__option:focus {
    background: var(--bg-hover, #1c2128);
    outline: none;
}

.custom-select__option[aria-selected="true"] {
    background: rgba(0, 212, 170, 0.15);
    color: var(--brand, #00d4aa);
}

.custom-select__option-symbol {
    font-weight: 600;
    font-size: 14px;
}

.custom-select__option-name {
    font-size: 12px;
    color: var(--text-muted, #7d8590);
}

.custom-select__option[aria-selected="true"] .custom-select__option-name {
    color: rgba(0, 212, 170, 0.8);
}

.custom-select__no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-muted, #7d8590);
    font-size: 13px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*셀렉트 검색 종료*/
/*프리미엄맴버십*/
.content_wrapper {
    display: flex;
}

.membership_intro {
    margin-bottom: 24px;
    padding: 24px 24px 20px;
    border-radius: var(--radius-12);
    border: 1px solid var(--border);
    background: radial-gradient(circle at 0 0, rgba(0,212,170,0.18), transparent 55%), var(--bg-card);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.membership_intro_main {
    flex: 1 1 260px;
    min-width: 0;
}

.membership_intro_eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.membership_intro_title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-strong);
    margin-bottom: 6px;
}

.membership_intro_sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.membership_intro_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.membership_badge_current {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.membership_badge_current b {
    color: #7ff4d8;
}

.membership_badge_best {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg,#00d4aa,#00bfa0);
    color: #021310;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,212,170,0.35);
}

.membership_container {
    overflow-x: auto;
    margin: 0 0 24px;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-12);
}

.membership_table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-12);
    overflow: hidden;
}

.membership_table th, .membership_table td {
    padding: 18px 14px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 13px;
}

.membership_table th:last-child, .membership_table td:last-child {
    border-right: none;
}

.membership_table tr:last-child td {
    border-bottom: none;
}

.membership_table thead th {
    background: linear-gradient(180deg,var(--bg-elev),var(--bg-card));
    color: var(--text-strong);
    font-weight: 700;
    font-size: 15px;
    padding: 22px 14px;
    position: sticky;
    top: 0;
    z-index: 5;
}

.membership_table thead th:first-child {
    background: var(--bg-input);
    color: var(--text-muted);
    font-size: 13px;
    min-width: 120px;
}

.membership_table tbody tr:nth-child(odd) {
    background: rgba(255,255,255,0.01);
}

.membership_table tbody tr:hover {
    background: rgba(0,212,170,0.04);
}

.membership_row_label {
    background: var(--bg-input);
    font-weight: 600;
    color: var(--text-muted);
    text-align: left;
    padding-left: 16px;
    white-space: nowrap;
}

.plan_free {
    color: var(--text-muted);
}

.plan_basic {
    color: #4a9eff;
}

.plan_premium {
    color: #00d4aa;
}

.plan_vip {
    color: #ffa726;
}

.plan_vvip {
    color: #c06bff;
}

.plan_unlimited {
    color: var(--danger);
}

.price_cell {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.price_duration {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.feature_available {
    color: var(--brand);
    font-weight: 600;
}

.feature_unavailable {
    color: var(--text-muted);
    opacity: .5;
}

.feature_list {
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text);
}

.feature_list li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.feature_list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.feature_highlight {
    color: var(--brand);
    font-weight: 700;
}

.feature_title {
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 6px;
    display: block;
    font-size: 13px;
}
td.verti_top {vertical-align: text-top;}
.site_data_box {
    background: var(--bg-input);
    border-radius: var(--radius-6);
    padding: 10px;
    margin: 4px 0;
}

.btn_purchase {
    width: 100%;
    max-width: 180px;
    margin: 6px auto 0;
    display: block;
}

.best_badge {
    display: inline-block;
    background: linear-gradient(135deg,#00d4aa 0%,#00bfa0 100%);
    color: var(--bg);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
    letter-spacing: .5px;
    box-shadow: 0 2px 8px rgba(0,212,170,0.3);
}

.membership_cards {
    display: none;
}

.membership_card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-12);
    padding: 22px;
    margin-bottom: 18px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.membership_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.membership_card.featured {
    border: 2px solid var(--brand);
    box-shadow: 0 4px 16px rgba(0,212,170,0.25);
}

.card_header {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.card_plan_name {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.card_price {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 10px 0;
}

.card_duration {
    font-size: 13px;
    color: var(--text-muted);
}

.card_body {
    margin-bottom: 16px;
}

.card_feature_item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.card_feature_item:last-child {
    border-bottom: none;
}

.card_feature_label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.card_feature_value {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.card_footer {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.membership_notice {
    margin-top: 20px;
}

.membership_notice .tit {
    margin-bottom: 10px;
}

.membership_notice .feature_list {
    font-size: 13px;
}

@media (max-width: 1200px) {
    .membership_table {
        min-width: 800px;
    }

    .membership_table th, .membership_table td {
        padding: 14px 10px;
        font-size: 12px;
    }

    .price_cell {
        font-size: 17px;
    }
}

@media (max-width: 960px) {
    .membership_intro {
        padding: 20px 18px;
    }

    .membership_intro_title {
        font-size: 20px;
    }
}

@media (max-width: 805px) {
    .membership_container {
        display: none;
    }

    .membership_cards {
        display: block;
    }

    .membership_intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .membership_intro_meta {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .membership_card {
        padding: 18px;
    }

    .card_plan_name {
        font-size: 17px;
    }

    .card_price {
        font-size: 26px;
    }

    .btn_purchase {
        max-width: 100%;
    }
}

/*프리미엄맴버십종료*/
/*프리미엄맴버십2*/


.plan_grid{
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  justify-items: center;
  justify-content: center;
}
.plan_card{
  border: 1px solid var(--border);
  background: #162332;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow:hidden;
  max-width: 350px;
}
.plan_card.is_featured{
  border-color: rgba(0,212,170,0.45);
  box-shadow: 0 0 0 1px rgba(0,212,170,0.25) inset;
}
.plan_card.is_featured::before{
  content:"";
  position:absolute;
  inset:-80px -60px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(0,212,170,0.22), transparent 60%);
  pointer-events:none;
}

.plan_head{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.plan_title{
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
  display:flex;
  align-items:center;
  gap: 10px;
}
.plan_badge{
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,212,170,0.35);
  color: var(--brand);
  background: rgba(0,212,170,0.12);
  font-weight: 700;
}
.plan_price{
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.plan_price_main{
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -0.03em;
}
.plan_price_sub{
  font-size: 13px;
  color: var(--text-muted);
}
.plan_divider{
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 14px 0;
}

.plan_list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.plan_list > li{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.plan_list li b{
  font-weight: 700;
  color: var(--text-strong);
}
.plan_list_block{
  flex-direction: column;
  align-items: flex-start;
}
.plan_note{
  display: block;
  width:100%;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
}

.membership_compare_sku{
  margin: 18px auto 8px;
  max-width: 690px;
}
.compare_title{
  text-align:center;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.compare_wrap{
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 18px;
  overflow:hidden;
}
.compare_table{
  width:100%;
  border-collapse: collapse;
}
.compare_table th,
.compare_table td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
  font-size: 13px;
}
.compare_table thead th{
  background: rgba(0,0,0,0.18);
  color: var(--text-strong);
  font-weight: 800;
}
.compare_col_feature{
  width: 20%;
  text-align:left;
}
.compare_col_plan{
  width: 29%;
  text-align:left;
}
.compare_table tbody th{
  color: var(--text-strong);
  font-weight: 700;
  text-align:left;
}
.compare_group th{
  background: rgba(255,255,255,0.03);
  color: var(--text-muted) !important;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.compare_note{
  color: var(--text-muted);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px){
  .plan_grid{ grid-template-columns: 1fr; }
  .compare_col_feature{ width:auto; }
}


/*프리미엄맴버십2 종료*/

/*푸터 */
.site_footer {border-top: 1px solid var(--border, rgba(255,255,255,0.08)); background: var(--bg-elev, #050810); font-size: 12px; color: var(--text-muted, #7d8590);}
.site_footer .footer_inner {display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 2.4fr) minmax(0, 2fr); gap: 24px 32px; padding: 20px 16px; align-items: flex-start;}
.footer_col {min-width: 0;}
.footer_logo_row {display: flex; align-items: center; gap: 10px; margin-bottom: 8px;}
.logo_mark {width: 30px;height: 30px;/* border-radius: 10px; */background: url(/resources/img/logo.png) center center no-repeat;display: flex;align-items: center;justify-content: center;font-size: 0;font-weight: 800;color: #04110d;box-shadow: 0 0 0 1px rgba(0,0,0,0.7), 0 6px 18px rgba(0,0,0,0.8);}
.footer_logo_text {display: flex; flex-direction: column; gap: 2px;}
.footer_service_name {font-size: 14px; font-weight: 700; color: var(--text, #e6edf3);}
.footer_service_tagline {font-size: 11px; color: var(--text-muted, #7d8590);}
.footer_intro {margin: 6px 0 8px; font-size: 11px; line-height: 1.6; color: var(--text-muted, #7d8590);}
.footer_badges {display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px;}
.footer_badge {border-radius: 999px; border: 1px solid rgba(125,133,144,0.55); padding: 3px 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted, #9ca3af);}
.footer_title {margin: 0 0 8px; font-size: 12px; font-weight: 700; color: var(--text, #e6edf3);}
.footer_info_list {margin: 0; padding: 0;}
.footer_info_item {display: flex; gap: 6px; margin-bottom: 3px;}
.footer_info_item dt {min-width: 88px; font-weight: 600; color: var(--text-muted, #9ca3af);}
.footer_info_item dd {margin: 0; color: var(--text-muted, #7d8590); word-break: keep-all;}
.site_footer .links {display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 8px;}
.site_footer .links a {font-size: 11px; color: var(--text-muted, #9ca3af); text-decoration: none; position: relative; padding-right: 8px;}
.site_footer .links a::after {content: ""; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 999px; background: rgba(125,133,144,0.9);}
.site_footer .links a:last-child::after {display: none;}
.site_footer .links a:hover {color: var(--brand, #00d4aa);}
.footer_notice {margin: 0 0 4px; font-size: 10px; color: var(--text-muted, #7d8590); line-height: 1.6;}
.footer_notice.sub {opacity: .85;}
@media (max-width: 960px) {
.site_footer .footer_inner {grid-template-columns: minmax(0, 1.6fr) minmax(0, 2.4fr);}
.footer_links_col {grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 10px;}
}
@media (max-width: 640px) {
.site_footer .footer_inner {grid-template-columns: 1fr; gap: 18px;}
}
/*푸터 종료*/
.legal_meta_bar{
  display:flex;
  flex-wrap:wrap;
  gap:4px 10px;
  align-items:center;
  justify-content:flex-end;
  font-size:11px;
  color:var(--text-muted, #9ca3af);
  margin:4px 0 10px;
}

.legal_meta_item{
  display:flex;
  gap:4px;
  align-items:center;
}

.legal_meta_label{
  opacity:.8;
}

.legal_meta_value{
  font-weight:600;
  color:var(--text, #e6edf3);
}

.legal_meta_dot{
  opacity:.5;
}

.legal_wrapper{
  margin-top:4px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.08);
  background:var(--bg-elev, #050810);
  padding:14px 16px;
}

.legal_toc_inline{
  display:flex;
  flex-wrap:wrap;
  gap:6px 10px;
  align-items:center;
  padding-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  margin-bottom:10px;
}

.legal_toc_label{
  font-size:11px;
  font-weight:600;
  color:var(--text-muted, #9ca3af);
}

.legal_toc_links{
  display:flex;
  flex-wrap:wrap;
  gap:4px 8px;
}

.legal_toc_links a{
  font-size:11px;
  color:var(--text-muted, #7d8590);
  text-decoration:none;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid transparent;
}

.legal_toc_links a:hover{
  color:var(--brand, #00d4aa);
  border-color:rgba(0,212,170,0.5);
  background:rgba(0,212,170,0.06);
}

.legal_body{
  display:flex;
  flex-direction:column;
  gap:0;
}

.legal_section{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.legal_section:last-child{
  border-bottom:none;
}

.legal_sec_title{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0 0 6px;
  font-size:13px;
}

.legal_sec_num{
  font-weight:600;
  color:var(--brand, #00d4aa);
  font-size:12px;
}

.legal_sec_text{
  font-weight:600;
  color:var(--text, #e6edf3);
}

.legal_section .txt{
  font-size:12px;
  line-height:1.7;
  color:var(--text-muted, #c3cad4);
}

@media (max-width: 640px){
  .legal_wrapper{
    padding:12px 12px;
  }
  .legal_meta_bar{
    justify-content:flex-start;
  }
}

/*이용약관 종료*/


.fold_body {
  position: relative;
  /* overflow: hidden; */
  /* max-height: 900px; */
  transition: max-height var(--dur-med, 0.25s) var(--ease-standard, ease);
}

.fold_body.is-fold-close {
  max-height: 150px;
  filter: blur(1px);
}

.fold_body.is-fold-close::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0), rgb(18 24 32));
  pointer-events: none;
}

.fold_btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted, #9ca3af);
  line-height: 1;
  cursor: pointer;
}

.fold_label {
  line-height: 1.2;
}

.fold_arrow {
  position: relative;
  width: 18px;
  height: 10px;
  display: block;
  transition: transform 0.2s ease;
}

.fold_arrow::before,
.fold_arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.fold_arrow::before {
  left: 0;
  transform-origin: left bottom;
  transform: rotate(28deg);
}

.fold_arrow::after {
  right: 0;
  transform-origin: right bottom;
  transform: rotate(-28deg);
}

.fold_btn[aria-expanded="true"] {
  color: var(--text-strong, #e6edf3);
  margin-top: 0px;
  margin-bottom: -30px;
}

.fold_btn[aria-expanded="true"] .fold_arrow {
  transform: scaleY(-1);
  top: -30px;
}

.fold_btn:hover .fold_label {
  text-decoration: underline;
}

.fold_btn:focus-visible {
  outline: 2px solid rgba(0, 212, 170, 0.7);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .fold_btn {
    font-size: 14px;
    gap: 3px;
  }
    .fold_btn[aria-expanded="true"] {margin: 20px 0 -10px;}

  .fold_arrow {
    width: 16px;
    height: 9px;
  }

  .fold_arrow::before,
  .fold_arrow::after {
    width: 10px;
    height: 1.8px;
  }
}

/*메인 폴드 숨펼치기 종료*/


.th_sort {display: inline-flex; align-items: center; gap: 6px;}

.th_sort_btn {display: inline-flex; align-items: center; justify-content: center; vertical-align: middle;}

.i.sort {width: 16px; height: 16px; display: inline-block; position: relative; opacity: .85;}
.i.sort::before, .i.sort::after {content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; opacity: .35;}
.i.sort::before {top: 1px; border-bottom: 6px solid var(--text-muted);}
.i.sort::after {bottom: 1px; border-top: 6px solid var(--text-muted);}

.th_sort_btn.is-asc .i.sort::before {opacity: 1; border-bottom-color: var(--text);}
.th_sort_btn.is-asc .i.sort::after {opacity: .18;}

.th_sort_btn.is-desc .i.sort::after {opacity: 1; border-top-color: var(--text);}
.th_sort_btn.is-desc .i.sort::before {opacity: .18;}

.th_sort_btn:hover .i.sort {opacity: 1;}
.th_sort_btn:focus-visible {outline: 2px solid rgba(0,212,170,.45); outline-offset: 2px; border-radius: 4px;}

/*오름차 내림차 료*/


@media (max-width: 768px) {

  /* 테이블 헤더 숨김 */
  .tbl.tbl_mcard thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }

  /* 테이블을 카드 컨테이너로 */
  .tbl.tbl_mcard {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: none;
  }

  .tbl.tbl_mcard table,
  .tbl.tbl_mcard tbody {
    display: block;
  }

  /* 각 행을 카드로 */
  .tbl.tbl_mcard tr {
    display: block;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-secondary);
  }

  .tbl.tbl_mcard tr:last-child {
    margin-bottom: 0;
  }

  /* td를 블록으로 */
  .tbl.tbl_mcard td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
    border: none;
    font-size: 13px;
    line-height: 1.4;
  }
  .tbl.tbl_mcard td + td {
    border-top: 1px solid var(--border);
  }

  .tbl.tbl_mcard td::before {
    content: attr(data-th);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 12px;
  }

  .tbl.tbl_mcard td[data-th="NO"]::before {
    content: "거래 번호";
  }
}

/*테이블 모바일 카형*/



.auto_prompt_wrap{
position: relative;
}

.auto_prompt_layer{/* position: absolute; *//* left: 0; *//* top: calc(100% + 20px); *//* width: 100%; *//* z-index: 50; *//* display: none; */margin-bottom: 15px;}

.auto_prompt_layer.is-open{/* display: block; */}

.auto_prompt_layer_in{
position: relative;
border-radius: var(--radius-12, 12px);
border: 1px solid rgba(0, 212, 170, 0.45);
background: #121820;
box-shadow: 0 12px 34px rgba(0,0,0,0.55);
padding: var(--space-14, 14px) var(--space-14, 14px);
}

.auto_prompt_layer_in::before{
content:"";
position:absolute;
top:-8px;
right: 80px;
width: 14px;
height: 14px;
transform: rotate(45deg);
background: rgba(18, 24, 32, 0.98);
border-left: 1px solid rgba(0, 212, 170, 0.45);
border-top: 1px solid rgba(0, 212, 170, 0.45);
}

.auto_prompt_layer_text{
color: var(--text, #c9d1d9);
font-size: 13px;
line-height: 1.65;
}

.auto_prompt_p{
margin: 0;
}
.auto_prompt_p.sub span.mini_box {background: #192d31;border: 1px solid #12403d;margin: 0 1px;padding: 1px 4px;border-radius: 5px;}
.auto_prompt_p.sub{color: var(--text, #c9d1d9);line-height: 2.1em;}

.auto_prompt_layer_actions{position: absolute;top: 0;right: 10px;margin-top: 12px;display: flex;justify-content: flex-end;gap: 8px;}



/* 대시보드 레이어팝 */


.help_tip{
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
margin-left: 6px;
position: relative;
cursor: help;
}

.help_tip_i{
width: 16px;
height: 16px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.18);
background: rgba(255,255,255,0.04);
color: #c9d1d9;
font-size: 11px;
line-height: 16px;
text-align: center;
font-weight: 700;
}

.help_tip::after{content: attr(data-tip);position: absolute;left: 50%;top: calc(100% + 10px);transform: translateX(-50%);width: max-content;max-width: min(320px, 80vw);padding: 10px 12px;border-radius: 10px;border: 1px solid rgba(0,212,170,0.30);background: rgba(18,24,32,0.98);color: #c9d1d9;font-size: 12px;line-height: 1.5;box-shadow: 0 10px 28px rgba(0,0,0,.45);opacity: 0;visibility: hidden;pointer-events: none;z-index: 998;}

.help_tip::before{content: "";position: absolute;left: 50%;top: calc(100% + 5px);transform: translateX(-50%) rotate(45deg);width: 10px;height: 10px;background: rgba(18,24,32,0.98);border-left: 1px solid rgba(0,212,170,0.30);border-top: 1px solid rgba(0,212,170,0.30);opacity: 0;visibility: hidden;pointer-events: none;z-index: 999;}


.bc_g .help_tip_i {
    border: 1px solid rgb(0 0 0 / 18%);
    background: rgb(0 0 0 / 4%);
    color: #2d2d2d;
}

.help_tip:hover::after,
.help_tip:hover::before,
.help_tip:focus-within::after,
.help_tip:focus-within::before{
opacity: 1;
visibility: visible;
}

.help_tip:focus-visible{
outline: 2px solid rgba(0,212,170,.45);
outline-offset: 2px;
border-radius: 999px;
}

/*툴팁*/
.desc_ico {display: inline-block;width: 15px;height: 15px;border: 1px solid #13696d;background: #104143;color: #1dd8c3;font-weight: bold;text-align: center;border-radius: 20px;line-height: 14px;}
.box.box_bdr3 {background: #0e2027;padding: var(--space-8) var(--space-10);color: #97faf2;border: 1px solid #11393d;margin: 10px 0;}

.checkbox_list.v2 {background: none;padding: 0px 0;gap: 3px 3px;margin-top: 3px;  }
.checkbox_list.v2 label {background: var(--bg-input);padding: var(--space-10) var(--space-10) var(--space-10) 40px;  justify-content: space-between;}
.checkbox_list.v2 label span.checkmark {left: 10px;}

.c_tags {border: 1px solid #30363d;background: #0a0e14;border-radius: 7px;color: #7d8590;padding: 0 4px;margin-bottom: 5px;display: inline-block;}
.c_tags b {color: #c9d1d9;padding: 2px;}

.checkbox_list.v2 label.st_radio.v2 {border-radius: 10px;border: 1px solid #30363d;align-items: flex-start;padding-left: 15px;}
.checkbox_list.v2 label.st_radio.v2 .radiomark {left: inherit;right: 10px;top: 20px;}
.checkbox_list.v2 label.st_radio.v2.on, .checkbox_list.v2 label.on {
    border: 1px solid #19b2a2;
}

.ckv2_wrap {margin: 10px 0;display: flex;flex-wrap: wrap;gap: 5px;}
label.ckv2 {padding-left: 0px;}
label.ckv2 .label_txt {border: 1px solid #2a3340;background: #182230;color: #707781;padding:10px 30px;border-radius:50px;}
label.ckv2 :checked + .label_txt {border: 1px solid #165a5b;background: #12323a;color: #ddfffb;}


/*원스톱 마법사 팝업 ~*/

.wizard_help_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.wizard_steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.wizard_step {
  display: none;
  padding: 10px;
}

.wizard_step.is-active {
  display: block;
}

.wizard_step_head {
  margin-bottom: 10px;
}

.wizard_step_kicker {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  float: left;
  padding: 0 10px;
}
.wizard_actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wizard-answer.is-selected {
  border: 1px solid var(--text);
  background: var(--text-placeholder);
  color: var(--text-strong);
  font-weight: 600;
}

.wizard_result {
  display: none;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-8);
  border: 1px solid var(--border-secondary);
  background: var(--bg-card);
}

.wizard_result.is-show {
  display: block;
}
/*원스톱 마법사 팝업 종료*/