@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

/* 
 * MOBILE (< 768px) ----------------------------------------
 * fixture                     sm
 * # of columns                4
 * unit                        (100% - (5px * 2)) / 4 - 20px
 * gutter                      20px
 * margin                      5px
 * container-size              100% - (5px * 2)
 *
 * TABLET (≥ 768px) ----------------------------------------
 * fixture                     md
 * # of columns                12
 * gutter                      20px
 * margin                      30px
 * container-size              100% - (30px * 2)
 * max-container-size          906px
 *
 * DESKTOP (≥ 1200px) ----------------------------------------
 * fixture                     lg
 * # of columns                12
 * unit                        75px
 * gutter                      20px
 * margin                      auto
 * container-size              1140px
 * max-container-size          1140px
*/
.eng {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@keyframes buy-animation {
  0% {
    opacity: 0;
    transform: translateY(50px);
    /* 아래에서 위로 이동 */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sell-animation {
  0% {
    opacity: 0;
    transform: translateY(-50px);
    /* 위에서 아래로 이동 */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* 글자 크기 확장 애니메이션 */
@keyframes scaleText {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 슬라이드 업 애니메이션 */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 좌우 흔들림 애니메이션 */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
}
/* 회전 애니메이션 */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 확대 축소 애니메이션 */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* 우측에서 슬라이드 인 애니메이션 */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 밑에서 슬라이드 업 애니메이션 */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 페이드 인 & 아웃 애니메이션 */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
/* 회전하면서 확대되는 애니메이션 */
@keyframes rotateAndScale {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.5) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
/* 위로 흔들리는 애니메이션 */
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 확대 후 축소 애니메이션 */
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
  flex: 1; /* main 요소가 가능한 최대 높이를 가지도록 설정 */
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  display: block;
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

* {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Montserrat", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Montserrat", sans-serif;
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Montserrat", sans-serif;
  color: #1e2025;
}

h1 {
  margin: 0;
}

a {
  color: #1e2025;
  text-decoration: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a,
button {
  cursor: pointer;
}

button {
  padding: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

address {
  font-style: normal;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media screen and (min-width: 768px) {
  .sm-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .md-only {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .md-only {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .lg-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sm-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .md-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .lg-hidden {
    display: none !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Montserrat", sans-serif;
  background: #f6f8fc;
  color: #111827;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.tc-main {
  overflow: hidden;
  background: #f6f8fc;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #1677ff, #0047ff);
  box-shadow: 0 14px 28px rgba(22, 119, 255, 0.28);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(22, 119, 255, 0.34);
}
.btn--sm {
  height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}
.btn--lg {
  height: 56px;
  padding-inline: 30px;
  font-size: 16px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(22, 119, 255, 0.32);
  color: #1677ff;
  font-weight: 800;
  background: rgba(22, 119, 255, 0.04);
}

.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -1.4px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #1677ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.more-link {
  display: none;
  color: #1677ff;
  font-weight: 800;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 64px, 1180px);
  }
  .section {
    padding: 82px 0;
  }
  .more-link {
    display: inline-flex;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 96px 0;
  }
}
.btn_group .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 200ms ease-in-out;
}
.btn_group .btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.btn-primary {
  color: #ffffff;
  background-color: #1677ff;
}
.btn-primary:not(:disabled):hover {
  background-color: #3870fc;
}

.btn-secondary {
  color: #ffffff;
  background-color: #1e2025;
}
.btn-secondary:hover {
  background-color: #191a20;
}

.btn-32 {
  font-size: 14px;
  letter-spacing: -0.01em;
  height: 32px;
}

.btn-40 {
  font-size: 16px;
  letter-spacing: -0.02em;
  height: 40px;
}

.btn-48 {
  font-size: 16px;
  letter-spacing: -0.02em;
  height: 48px;
}

.btn-55 {
  font-size: 18px;
  letter-spacing: -0.02em;
  height: 55px;
}

.form-select,
.form-input {
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background-color: #ffffff;
  border-radius: 8px;
  transition: background-color 200ms ease-in-out;
  appearance: none;
}
.form-select::placeholder,
.form-input::placeholder {
  color: #9c9fa3;
}
.form-select:not(:disabled):hover,
.form-input:not(:disabled):hover {
  background-color: #f8faff;
}
.form-select:disabled,
.form-input:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.login_container .login_wrap form .content_wrap .content_list .content_item label.required::after, .trial_container .desc form .content_wrap .content_list .content_item label.required::after, .trial_container .desc form .title span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #ef4444;
  border-radius: 50%;
}

.select-group {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select-group .form-select {
  padding-right: 40px;
  text-overflow: ellipsis;
}
.select-group .form-select::-ms-expand {
  display: none;
}
.select-group .form-select::after {
  content: "1231231313";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url("/assets/images/icon/chevron_down.png") no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-group {
  position: relative;
  width: 100%;
}

.pagination .page-list .page-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #44464a;
  font-weight: 600;
  margin-right: 5px;
  background-color: #ffffff;
  border: 1px solid #dedfe2;
  border-radius: 8px;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.pagination .page-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-list .page-item:hover {
  background-color: #f5f6f8;
}
.pagination .page-list .page-item a {
  display: inline-block;
  padding: 8px 10px;
}
.pagination .page-list .page-item a img {
  width: 16px;
  height: 16px;
}
.pagination .page-list .page-item.ico a {
  padding: 5.5px;
}
.pagination .page-list .page-item.active {
  color: #1677ff;
  border-color: #1677ff;
}

input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #dedfe2;
  border: none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=checkbox]:checked {
  background-color: #1dc9a0;
  background-image: url("/assets/images/icon/checkmark.png"); /* 체크된 상태일 때 사용할 이미지 경로 */
  background-size: 10px 10px; /* 배경 이미지의 크기를 10px로 조정합니다. */
  background-repeat: no-repeat; /* 배경 이미지를 반복하지 않도록 설정합니다. */
  background-position: center;
}

.nav_container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 68px;
  z-index: 60;
  background-color: #173f8e;
}
.nav_container .menu_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav_container .menu_container .logo_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
}
.nav_container .menu_container .logo_wrap .nav_tit img {
  width: 160px;
}
.nav_container .menu_container .logo_wrap .nav_tit__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav_container .menu_container .logo_wrap .nav_tit__logo span {
  color: #ffffff;
  text-align: center;
}
.nav_container .menu_container .logo_wrap .menu_btn_wrap a {
  display: none;
}
.nav_container .menu_container .logo_wrap .menu_btn_wrap a img {
  width: 20px;
  height: 20px;
}
.nav_container .menu_container .logo_wrap .menu_btn_wrap a.close {
  display: none;
}
.nav_container .menu_container .logo_wrap .menu_btn_wrap a.active {
  display: block;
}
.nav_container .menu_container .menu_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  height: calc(100vh - 68px - 98px);
  color: #ffffff;
  background-color: #173f8e;
}
.nav_container .menu_container .menu_list .menu_item {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  height: calc((100vh - 68px - 98px) / 6);
  text-align: center;
}
.nav_container .menu_container .menu_list .menu_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav_container .menu_container .menu_list .menu_item a:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}
.nav_container .menu_container .btn_wrap {
  width: 100%;
  padding: 24px 20px;
  background-color: #173f8e;
}
.nav_container .menu_container .btn_wrap .btn_area {
  height: 50px;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}
.nav_container .menu_container .btn_wrap .btn_area:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}
.nav_container .menu_container .btn_wrap .btn_area a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  height: 100%;
}
.nav_container .menu_container .hide_menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .nav_container .menu_container {
    flex-direction: row;
    width: 100%;
    height: 68px;
    padding: 0 80px;
  }
  .nav_container .menu_container .logo_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    padding: 0;
    border-bottom: none;
  }
  .nav_container .menu_container .logo_wrap .nav_tit img {
    width: 200px;
  }
  .nav_container .menu_container .menu_list {
    flex-direction: row;
    width: auto;
    height: auto;
  }
  .nav_container .menu_container .menu_list .menu_item {
    font-size: 16px;
    letter-spacing: -0.02em;
    width: auto;
    height: auto;
  }
  .nav_container .menu_container .menu_list .menu_item:not(:last-child) {
    margin-right: 60px;
  }
  .nav_container .menu_container .menu_list .menu_item a {
    display: block;
    width: auto;
    height: auto;
  }
  .nav_container .menu_container .menu_list .menu_item a:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
  }
  .nav_container .menu_container .btn_wrap {
    width: 120px;
    padding: 0;
  }
  .nav_container .menu_container .btn_wrap .btn_area {
    width: 100%;
    height: 40px;
  }
  .nav_container .menu_container .hide_menu {
    display: flex;
  }
}

.global_footer {
  font-size: 12px;
  letter-spacing: -0.005em;
  color: #ffffff;
  width: 100%;
  padding: 12px 0;
  margin-top: auto;
  background-color: #1e2025;
}
.global_footer .footer_tit_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.global_footer .footer_tit_wrap .footer_logo {
  width: 128px;
  height: auto;
}
.global_footer .footer_tit_wrap a {
  font-weight: 700;
  color: #ffffff;
}
.global_footer .address {
  margin-bottom: 28px;
}
.global_footer .address h4 {
  font-weight: 500;
  margin-bottom: 8px;
}
.global_footer .address_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.global_footer .address_list .address_item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.global_footer .address_list .address_item:not(:last-child) {
  margin-bottom: 8px;
}
.global_footer .address_list .address_item dt {
  margin-right: 12px;
  color: #9c9fa3;
}
.global_footer .address_list .address_item dd a {
  color: #ffffff;
}
.global_footer .info_wrap {
  padding-top: 28px;
  margin-bottom: 40px;
  border-top: 1px solid #44464a;
}
.global_footer .info_wrap p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 300;
  margin-bottom: 4px;
  color: #dedfe2;
  line-height: 18px;
  word-break: keep-all;
}
.global_footer .info_wrap p::before {
  content: "-";
  display: block; /* block으로 설정 */
  margin-right: 6px;
}
.global_footer .copyright {
  font-size: 12px;
  letter-spacing: -0.005em;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .global_footer {
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #ffffff;
  }
  .global_footer .footer_tit_wrap {
    margin-bottom: 32px;
  }
  .global_footer .footer_tit_wrap .footer_logo {
    width: 150px;
  }
  .global_footer .address {
    margin-bottom: 32px;
  }
  .global_footer .address_list .address_item:not(:last-child) {
    margin-bottom: 10px;
  }
  .global_footer .address_list .address_item dt {
    margin-right: 14px;
  }
  .global_footer .info_wrap {
    padding-top: 32px;
  }
  .global_footer .info_wrap p {
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1200px) {
  .global_footer .footer_tit_wrap {
    margin-top: 12px;
    margin-bottom: 48px;
  }
  .global_footer .address {
    margin-bottom: 32px;
  }
  .global_footer .address_list .address_item:not(:last-child) {
    margin-bottom: 10px;
  }
  .global_footer .address_list .address_item dt {
    margin-right: 14px;
  }
  .global_footer .address h4 {
    margin-bottom: 23px;
  }
  .global_footer .address_list {
    flex-direction: row;
    align-items: center;
  }
  .global_footer .address_list .address_item {
    margin-right: 28px;
    margin-bottom: 0;
  }
  .global_footer .address_list .address_item:not(:last-child) {
    margin-bottom: 0;
  }
  .global_footer .address_list .address_item dt {
    margin-right: 12px;
  }
  .global_footer .address_list .address_item dd {
    width: auto;
  }
}

.top_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 42px;
  height: 42px;
  background-color: #1e2025;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* opacity와 visibility에 대한 transition */
  cursor: pointer;
  z-index: 99999;
}
.top_btn_wrap img {
  width: 20px;
  height: 20px;
}
.top_btn_wrap:hover {
  background-color: #44464a;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}

.modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 335px;
  background: #ffffff;
  border-radius: 20px;
  z-index: 101;
}
.modal_container header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.modal_container header h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.modal_container header img {
  width: 24px;
}
.modal_container .desc {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 20px;
  max-height: 411px;
  overflow: auto;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .modal_container {
    width: calc(100vw - 50%);
  }
}

.title_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
  margin-bottom: 60px;
  text-align: center;
}
.title_wrap.company {
  background: rgba(255, 255, 255, 0.6) url("/assets/images/bg-company.jpg") no-repeat center center;
  background-size: cover;
}
.title_wrap.program {
  background: rgba(255, 255, 255, 0.3) url("/assets/images/bg-program.jpg") no-repeat center center;
  background-size: cover;
}
.title_wrap.trial {
  background: rgba(0, 0, 0, 0.6) url("/assets/images/bg-trial.jpg") no-repeat center center;
  background-size: cover;
}
.title_wrap h1 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 700;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.container .row {
  display: flex;
  flex-wrap: wrap;
}
.container [class^=col-] {
  padding: calc(40px / 2);
}
.container .col-sm-1 {
  width: calc(1 / 4 * 100%);
}
.container .col-sm-2 {
  width: calc(2 / 4 * 100%);
}
.container .col-sm-3 {
  width: calc(3 / 4 * 100%);
}
.container .col-sm-4 {
  width: calc(4 / 4 * 100%);
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1020px;
    padding: 0 30px;
  }
  .container .col-md-1 {
    width: calc(1 / 12 * 100%);
  }
  .container .col-md-2 {
    width: calc(2 / 12 * 100%);
  }
  .container .col-md-3 {
    width: calc(3 / 12 * 100%);
  }
  .container .col-md-4 {
    width: calc(4 / 12 * 100%);
  }
  .container .col-md-5 {
    width: calc(5 / 12 * 100%);
  }
  .container .col-md-6 {
    width: calc(6 / 12 * 100%);
  }
  .container .col-md-7 {
    width: calc(7 / 12 * 100%);
  }
  .container .col-md-8 {
    width: calc(8 / 12 * 100%);
  }
  .container .col-md-9 {
    width: calc(9 / 12 * 100%);
  }
  .container .col-md-10 {
    width: calc(10 / 12 * 100%);
  }
  .container .col-md-11 {
    width: calc(11 / 12 * 100%);
  }
  .container .col-md-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1080px;
    padding: 0;
  }
  .container .col-lg-1 {
    width: 90px;
  }
  .container .col-lg-2 {
    width: 180px;
  }
  .container .col-lg-3 {
    width: 270px;
  }
  .container .col-lg-4 {
    width: 360px;
  }
  .container .col-lg-5 {
    width: 450px;
  }
  .container .col-lg-6 {
    width: 540px;
  }
  .container .col-lg-7 {
    width: 630px;
  }
  .container .col-lg-8 {
    width: 720px;
  }
  .container .col-lg-9 {
    width: 810px;
  }
  .container .col-lg-10 {
    width: 900px;
  }
  .container .col-lg-11 {
    width: 990px;
  }
  .container .col-lg-12 {
    width: 1080px;
  }
}

.tc-main {
  min-width: 320px;
  background: #f6f8fc;
  color: #111827;
  font-family: Pretendard, sans-serif;
}
.tc-main .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1677ff, #0047ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.tc-main .btn--large {
  height: 52px;
  padding: 0 30px;
}
.tc-main .outline-btn {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(22, 119, 255, 0.35);
  color: #1677ff;
  font-weight: 700;
  text-decoration: none;
}
.tc-main .hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tc-main .hero__nav .logo {
  font-size: 22px;
  font-weight: 900;
}
.tc-main .hero__nav .logo span {
  display: none;
}
.tc-main .hero__nav nav {
  display: none;
}
.tc-main .hero__nav .nav-actions {
  display: flex;
  gap: 8px;
}
.tc-main .hero__nav .nav-actions .login {
  display: none;
}
.tc-main .hero__inner {
  display: grid;
  gap: 32px;
  padding: 18px 0;
}
.tc-main .hero__text .eyebrow {
  color: #8bbcff;
  font-weight: 700;
}
.tc-main .hero__text h1 {
  margin: 12px 0;
  font-size: 38px;
  line-height: 1.22;
  letter-spacing: -1.8px;
}
.tc-main .hero__text h1 strong {
  color: #1677ff;
}
.tc-main .hero__text .desc {
  max-width: 440px;
  color: #cbd5e1;
  line-height: 1.7;
}
.tc-main .hero__visual {
  position: relative;
  height: 250px;
}
.tc-main .hero__visual .orb {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  box-shadow: 0 0 70px rgba(22, 119, 255, 0.7);
  font-size: 42px;
  font-weight: 900;
}
.tc-main .hero__visual .coin {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.tc-main .hero__visual .coin--btc {
  right: 18%;
  top: 8%;
  background: #f59e0b;
}
.tc-main .hero__visual .coin--eth {
  left: 22%;
  top: 6%;
}
.tc-main .hero__visual .coin--xrp {
  left: 12%;
  bottom: 24%;
}
.tc-main .hero__visual .coin--usdt {
  right: 12%;
  bottom: 20%;
  background: #10b981;
}
.tc-main .hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tc-main .hero__stats div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tc-main .hero__stats span {
  display: block;
  margin-bottom: 8px;
  color: #93a4bd;
  font-size: 13px;
}
.tc-main .hero__stats strong {
  font-size: 22px;
}
.tc-main .section {
  padding: 52px 20px;
}
.tc-main .section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.tc-main .section__head h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -1px;
}
.tc-main .section__head span {
  color: #13b981;
  font-size: 13px;
}
.tc-main .performance__grid {
  display: grid;
  gap: 14px;
}
.tc-main .performance .profit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 22px;
}
.tc-main .performance .profit-card span {
  color: #6b7280;
  font-weight: 700;
}
.tc-main .performance .profit-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 28px;
  color: #1677ff;
}
.tc-main .performance .profit-card em {
  color: #13b981;
  font-style: normal;
}
.tc-main .process {
  display: grid;
  gap: 24px;
  background: #fff;
}
.tc-main .process__text h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 14px;
}
.tc-main .process__text p {
  color: #6b7280;
  line-height: 1.7;
}
.tc-main .process__steps {
  display: grid;
  gap: 14px;
}
.tc-main .process__steps div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 24px;
  text-align: center;
}
.tc-main .process__steps span {
  color: #1677ff;
  font-weight: 900;
}
.tc-main .process__steps strong {
  display: block;
  margin: 10px 0;
  font-size: 18px;
}
.tc-main .process__steps p {
  margin: 0;
  color: #6b7280;
}
.tc-main .safety {
  background: #061225;
  color: #fff;
}
.tc-main .safety h2 {
  font-size: 28px;
}
.tc-main .safety__grid {
  display: grid;
  gap: 14px;
}
.tc-main .safety__grid div {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tc-main .safety__grid strong {
  font-size: 18px;
}
.tc-main .safety__grid p {
  color: #cbd5e1;
}
.tc-main .safety .notice {
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 14px;
}
.tc-main .split {
  display: grid;
  gap: 18px;
}
.tc-main .split .simulator,
.tc-main .split .market {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 24px;
}
.tc-main .split .input-box {
  margin: 16px 0;
  padding: 16px;
  border-radius: 12px;
  background: #f6f8fc;
  text-align: right;
  font-weight: 800;
}
.tc-main .split .result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tc-main .split .result div {
  padding: 18px;
  border-radius: 14px;
  background: #f8fbff;
  text-align: center;
}
.tc-main .split .result span {
  color: #6b7280;
  font-size: 13px;
}
.tc-main .split .result strong {
  display: block;
  margin-top: 8px;
  color: #1677ff;
  font-size: 20px;
}
.tc-main .split table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tc-main .split table th,
.tc-main .split table td {
  padding: 12px 8px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.tc-main .split table th {
  color: #6b7280;
}
.tc-main .reviews__grid {
  display: grid;
  gap: 14px;
}
.tc-main .reviews div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 22px;
}
.tc-main .reviews span {
  color: #6b7280;
}
.tc-main .reviews strong {
  display: block;
  margin: 10px 0;
  color: #1677ff;
  font-size: 30px;
}
.tc-main .faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 10px;
  padding: 18px 20px;
}
.tc-main .faq summary {
  cursor: pointer;
  font-weight: 800;
}
.tc-main .faq p {
  color: #6b7280;
}

@media (min-width: 768px) {
  .tc-main .hero {
    padding: 22px 44px 44px;
  }
  .tc-main .hero__nav .logo span {
    display: inline;
    margin-left: 8px;
    color: #94a3b8;
    font-size: 12px;
  }
  .tc-main .hero__nav .nav-actions .login {
    display: inline-flex;
    align-items: center;
    color: #fff;
  }
  .tc-main .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 30px 0;
  }
  .tc-main .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .tc-main .section {
    padding: 70px 44px;
  }
  .tc-main .process__steps,
  .tc-main .safety__grid,
  .tc-main .reviews__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .tc-main .split {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .tc-main .hero {
    padding-left: calc((100% - 1180px) / 2);
    padding-right: calc((100% - 1180px) / 2);
  }
  .tc-main .hero__nav nav {
    display: flex;
    gap: 36px;
  }
  .tc-main .hero__nav nav a {
    color: #fff;
    font-weight: 700;
  }
  .tc-main .hero__text h1 {
    font-size: 58px;
  }
  .tc-main .hero__visual {
    height: 380px;
  }
  .tc-main .hero__visual .orb {
    width: 200px;
    height: 200px;
    font-size: 58px;
  }
  .tc-main .section {
    margin: 0 auto;
  }
}
.company_container .desc {
  padding: 0 20px 60px;
  word-break: keep-all;
}
.company_container .desc h2 {
  font-size: 16px;
  color: #1677ff;
  font-weight: 700;
  margin-bottom: 12px;
}
.company_container .desc .company_desc {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  line-height: 36px;
}
.company_container .desc .tcbot_desc {
  font-size: 16px;
  color: #44464a;
  margin-bottom: 60px;
  line-height: 24px;
}
.company_container .desc .img {
  height: 200px;
  border-radius: 20px;
  background: url("/assets/images/bg-company2.jpg") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .company_container .desc {
    padding-left: 40px;
    padding-right: 40px;
  }
  .company_container .desc .img {
    height: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .company_container .desc {
    max-width: 1080px;
    margin: 0 auto 60px;
  }
  .company_container .desc h2 {
    font-size: 20px;
  }
  .company_container .desc .company_desc {
    font-size: 32px;
    line-height: 48px;
  }
  .company_container .desc .tcbot_desc {
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
    line-height: 36px;
  }
  .company_container .desc .img {
    height: 400px;
  }
}

.program_container .desc_wrap .pg_sec.short .gimpo .graph_wrap, .program_container .desc_wrap .pg_sec .gimpo.method .graph_wrap {
  width: 100%;
  margin-bottom: 80px;
  background-color: #fff;
}
.program_container .desc_wrap .pg_sec.short .gimpo .graph_wrap img, .program_container .desc_wrap .pg_sec .gimpo.method .graph_wrap img {
  width: 100%;
}

.program_container .title_wrap {
  margin-bottom: 0;
}
.program_container .desc_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  word-break: keep-all;
}
.program_container .desc_wrap .tab_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 -20px 60px;
}
.program_container .desc_wrap .tab_list .tab_item {
  font-size: 16px;
  color: #9c9fa3;
  font-weight: 700;
  width: 50%;
  padding: 20px;
  border-bottom: 1px solid #dedfe2;
  text-align: center;
  cursor: pointer;
}
.program_container .desc_wrap .tab_list .tab_item.active {
  color: #1677ff;
  border-bottom: 2px solid #1677ff;
}
.program_container .desc_wrap .pg_sec {
  padding: 0 20px;
  margin-bottom: 80px;
}
.program_container .desc_wrap .pg_sec.action h2 {
  animation: slideUp 1s ease-out forwards;
}
.program_container .desc_wrap .pg_sec.action .gimpo {
  opacity: 0;
  animation: slideInUp 1s ease-out forwards;
}
.program_container .desc_wrap .pg_sec.action .gimpo.trading .desc_pic {
  opacity: 0;
  animation: slideInUp 1s ease-out forwards;
}
.program_container .desc_wrap .pg_sec.action .gimpo.method {
  opacity: 0;
  animation: slideInUp 1s ease-out forwards;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container .y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container .y-axis .y-label {
  font-size: 11px;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container svg .buy {
  fill: #13b981;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container svg .sell {
  fill: #ef4444;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container svg .vertical-line {
  stroke: #dedfe2;
  stroke-width: 0.3;
}
.program_container .desc_wrap .pg_sec.action .gimpo .graph_wrap .graph-container svg .svg-text {
  font-size: 4px;
  font-weight: 600;
  vertical-align: middle;
}
.program_container .desc_wrap .pg_sec:last-child {
  margin-bottom: 0;
}
.program_container .desc_wrap .pg_sec:not(:last-child) {
  border-bottom: 1px solid #dedfe2;
}
.program_container .desc_wrap .pg_sec h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.program_container .desc_wrap .pg_sec .gimpo {
  margin-bottom: 80px;
}
.program_container .desc_wrap .pg_sec .gimpo h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.program_container .desc_wrap .pg_sec .gimpo .desc {
  font-size: 16px;
  color: #44464a;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 24px;
  word-break: keep-all;
}
.program_container .desc_wrap .pg_sec .gimpo .desc span {
  font-weight: 700;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 350px;
  margin-bottom: 28px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 158px;
  height: 153px;
  padding: 12px 15px;
  border: 1px solid #dedfe2;
  border-radius: 20px;
  background-color: #fff;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap .tit {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 15px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap:first-child {
  margin-right: 20px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap .price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  width: 126px;
  height: 36px;
  background-color: #f5f6f8;
  border-radius: 30px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 93px;
  height: 68px;
  border: 1px solid #dedfe2;
  border-radius: 20px;
  background-color: #fff;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange .top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange .top img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  margin-bottom: 0;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange .top .tit {
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 0;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange .price {
  font-size: 16px;
  color: #44464a;
  font-weight: 600;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .arrow_down {
  margin-bottom: 28px;
  text-align: center;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .arrow_down img {
  width: 25px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 158px;
  height: 153px;
  padding: 12px 15px;
  border: 1px solid #dedfe2;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .tit {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 15px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}
.program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .gimpo_ico {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: -21px;
  right: -40px;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #1677ff;
  text-align: center;
  line-height: 21px;
}
.program_container .desc_wrap .pg_sec .gimpo.method .desc {
  word-break: break-all;
}
.program_container .desc_wrap .pg_sec .gimpo.method .gimpo_ex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.program_container .desc_wrap .pg_sec .gimpo.method .gimpo_ex h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 12px 32px;
  margin-bottom: 40px;
  text-align: center;
  background-color: #1e2025;
  border-radius: 44px;
}
.program_container .desc_wrap .pg_sec .gimpo.method .gimpo_ex img {
  width: 100%;
}
.program_container .desc_wrap .pg_sec.short .gimpo .graph_wrap .candel-graph-container .candle-chart {
  width: 100%;
  height: 200px;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text {
  font-size: 70px;
  opacity: 0;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text:nth-of-type(1) {
  animation: buy-animation 1s ease-out forwards;
  animation-delay: 1.5s;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text:nth-of-type(2) {
  animation: sell-animation 1s ease-out forwards;
  animation-delay: 2.5s;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text:nth-of-type(3) {
  animation: buy-animation 1s ease-out forwards;
  animation-delay: 3.5s;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text:nth-of-type(4) {
  animation: sell-animation 1s ease-out forwards;
  animation-delay: 4.5s;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text:nth-of-type(5) {
  animation: buy-animation 1s ease-out forwards;
  animation-delay: 5.5s;
}
.program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text:nth-of-type(6) {
  animation: sell-animation 1s ease-out forwards;
  animation-delay: 6.5s;
}
@media screen and (min-width: 768px) {
  .program_container .desc_wrap {
    margin: 0;
  }
  .program_container .desc_wrap .tab_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto -50px 60px;
  }
  .program_container .desc_wrap .pg_sec {
    padding: 0 40px;
  }
  .program_container .desc_wrap .pg_sec .gimpo h3 {
    font-size: 22px;
  }
  .program_container .desc_wrap .pg_sec .gimpo .desc {
    font-size: 18px;
    color: #44464a;
    line-height: 27px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap:first-child {
    margin-right: 35px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .arrow_down {
    margin-bottom: 28px;
    text-align: center;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .arrow_down img {
    width: 25px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 158px;
    height: 153px;
    padding: 12px 15px;
    border: 1px solid #dedfe2;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .tit {
    font-size: 14px;
    letter-spacing: -0.01em;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 15px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap img {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .gimpo_ico {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    position: absolute;
    top: -21px;
    right: -40px;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-color: #1677ff;
    text-align: center;
    line-height: 21px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.method .graph_wrap {
    height: auto;
  }
  .program_container .desc_wrap .pg_sec .gimpo.method .gimpo_ex h4 {
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .program_container .desc_wrap .pg_sec .gimpo .graph-container svg {
    width: 100%;
    height: 100%;
  }
  .program_container .desc_wrap .pg_sec .gimpo .graph-container .svg-text {
    font-size: 6px;
  }
  .program_container .desc_wrap .pg_sec.short .gimpo .graph_wrap {
    height: auto;
  }
  .program_container .desc_wrap .pg_sec.short .gimpo .graph_wrap .candel-graph-container .candle-chart {
    height: 400px;
  }
  .program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text {
    font-size: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .program_container .desc_wrap .tab_list {
    margin-bottom: 120px;
  }
  .program_container .desc_wrap .tab_list .tab_item {
    font-size: 20px;
    width: 50%;
    padding: 28px;
  }
  .program_container .desc_wrap .pg_sec {
    max-width: 1080px;
    padding: 0 20px;
  }
  .program_container .desc_wrap .pg_sec h2 {
    font-size: 40px;
  }
  .program_container .desc_wrap .pg_sec .gimpo {
    margin-bottom: 100px;
  }
  .program_container .desc_wrap .pg_sec .gimpo h3 {
    font-size: 28px;
  }
  .program_container .desc_wrap .pg_sec .gimpo .desc {
    font-size: 20px;
    margin-bottom: 60px;
    line-height: 34px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading {
    box-sizing: border-box;
    background-image: url("/assets/images/map-base.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center 120%;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic {
    flex-direction: row;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 {
    max-width: 100%;
    margin-bottom: 0;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap {
    justify-content: space-between;
    width: 260px;
    height: 239px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap:first-child {
    margin-right: 27px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap .tit {
    font-size: 20px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap img {
    width: 68px;
    height: 68px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .wrap .price {
    font-size: 20px;
    width: 212px;
    height: 50px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange {
    width: 103px;
    height: 82px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange .top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step1 .exchange .price {
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .arrow_down {
    padding: 0 30px;
    margin-bottom: 0;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .arrow_down img {
    width: 41px;
    transform: rotate(-90deg);
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap {
    justify-content: space-between;
    width: 260px;
    height: 239px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .tit {
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap img {
    width: 68px;
    height: 68px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .price {
    font-size: 24px;
    color: #1677ff;
    font-weight: 700;
    display: inline-block;
    padding: 10px 60px;
    background-color: #f5f6f8;
    border-radius: 30px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .gimpo_ico {
    width: 100px;
    height: 100px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.trading .desc_pic .step2 .wrap .gimpo_ico span {
    font-size: 24px;
    line-height: 36px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.method .graph_wrap {
    width: 100%;
  }
  .program_container .desc_wrap .pg_sec .gimpo.method .graph_wrap .graph-container.desktop-graph {
    height: 450px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.method .graph_wrap .graph-container svg .svg-text {
    font-size: 8px;
  }
  .program_container .desc_wrap .pg_sec .gimpo.method .gimpo_ex h4 {
    font-size: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
  }
  .program_container .desc_wrap .pg_sec.short .gimpo .graph_wrap .candel-graph-container .candle-chart {
    height: 560px;
  }
  .program_container .desc_wrap .pg_sec.short.action .gimpo .graph_wrap .candel-graph-container svg .animate-text {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
}

.trial_container .tab_wrap {
  width: 100%;
}
.trial_container .tab_wrap .tab_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: -60px 0 60px;
}
.trial_container .tab_wrap .tab_list .td_tab_item {
  font-size: 16px;
  color: #9c9fa3;
  font-weight: 700;
  width: 50%;
  padding: 20px;
  border-bottom: 1px solid #dedfe2;
  text-align: center;
  cursor: pointer;
}
.trial_container .tab_wrap .tab_list .td_tab_item.active {
  color: #1677ff;
  border-bottom: 2px solid #1677ff;
}
.trial_container .desc {
  padding: 0 20px;
  word-break: keep-all;
}
.trial_container .desc h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.trial_container .desc .trial_desc {
  font-size: 16px;
  color: #44464a;
  padding-bottom: 40px;
  line-height: 24px;
  text-align: center;
}
.trial_container .desc form {
  padding: 20px 20px 40px;
  margin: auto -20px -20px;
  background-color: #f5f6f8;
}
.trial_container .desc form .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 43px;
}
.trial_container .desc form .title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-right: 20px;
}
.trial_container .desc form .title span {
  font-size: 14px;
  color: #44464a;
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
.trial_container .desc form .title span::before {
  left: -10px;
}
.trial_container .desc form .content_wrap .content_list .content_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.trial_container .desc form .content_wrap .content_list .content_item label {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}
.trial_container .desc form .content_wrap .content_list .content_item label.required::after {
  right: -10px;
  margin-left: 10px;
}
.trial_container .desc form .content_wrap .content_list .content_item.email_wrap .input-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.trial_container .desc form .content_wrap .content_list .content_item.email_wrap .input-group #email_input {
  display: none;
  margin-right: 8px;
}
.trial_container .desc form .content_wrap .content_list .content_item.email_wrap span {
  display: inline-block;
  margin: 0 2px;
}
.trial_container .desc form .content_wrap .content_list .content_item textarea {
  width: 100%;
  min-height: 160px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
}
.trial_container .desc form .content_wrap .content_list .content_item textarea:not(:disabled):hover {
  background-color: #f8faff;
}
.trial_container .desc form .check_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
.trial_container .desc form .check_wrap .check-input {
  margin-right: 8px;
}
.trial_container .desc form .check_wrap label,
.trial_container .desc form .check_wrap a {
  font-size: 14px;
  color: #44464a;
}
.trial_container .desc form .check_wrap label {
  margin-right: 20px;
  cursor: pointer;
}
.trial_container .desc form .check_wrap a {
  text-decoration: underline;
}
.trial_container .desc form .btn_group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trial_container .desc form .btn_group button {
  width: 200px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .trial_container .tab_wrap .tab_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -60px 0 60px;
  }
  .trial_container .desc h2 {
    font-size: 28px;
  }
  .trial_container .desc .trial_desc {
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 27px;
  }
  .trial_container .desc form {
    padding: calc(20px + 30px) calc(40px + 30px) calc(40px + 30px);
  }
  .trial_container .desc form .title h3 {
    font-size: 22px;
  }
  .trial_container .desc form .check_wrap span {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
  .trial_container .desc form .check_wrap a {
    font-size: 14px;
    letter-spacing: -0.01em;
  }
  .trial_container .desc form .btn_group button {
    font-size: 18px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1200px) {
  .trial_container .tab_wrap .tab_list {
    margin-bottom: 120px;
  }
  .trial_container .tab_wrap .tab_list .td_tab_item {
    font-size: 20px;
    width: 50%;
    padding: 28px;
  }
  .trial_container .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
  }
  .trial_container .desc h2 {
    font-size: 40px;
  }
  .trial_container .desc .trial_desc {
    font-size: 20px;
    padding-bottom: 60px;
    line-height: 1;
  }
  .trial_container .desc form {
    width: 100%;
    padding: 60px 80px;
    margin-bottom: 60px;
    border-radius: 20px;
  }
  .trial_container .desc form .title h3 {
    font-size: 28px;
  }
  .trial_container .desc form .title span {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
  .trial_container .desc form .content_wrap .content_list .content_item {
    flex-direction: row;
    align-items: center;
    margin-bottom: 28px;
  }
  .trial_container .desc form .content_wrap .content_list .content_item .w-30 {
    width: 30%;
  }
  .trial_container .desc form .content_wrap .content_list .content_item:last-child {
    margin-bottom: 40px;
  }
  .trial_container .desc form .content_wrap .content_list .content_item label {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    width: 50px;
    margin-right: 34px;
    margin-bottom: 0;
  }
  .trial_container .desc form .btn_group button {
    font-size: 18px;
    letter-spacing: -0.02em;
  }
}

.expected {
  margin-bottom: 60px;
}
.expected .expected_return .step1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.expected .expected_return .step1 > * {
  width: 100%;
}
.expected .expected_return .step1 .txt-wrap {
  margin-bottom: 40px;
}
.expected .expected_return .step1 .txt-wrap p {
  font-size: 16px;
  color: #44464a;
  text-align: center;
}
.expected .expected_return .step1 .select {
  margin-bottom: 40px;
}
.expected .expected_return .step1 .select select {
  width: 100%;
  padding: 8px;
  width: 100%;
  border: 1px solid #dedfe2;
  border-radius: 8px;
}
.expected .expected_return .step1 .range {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.expected .expected_return .step1 .range .range_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
}
.expected .expected_return .step1 .range .range_item .expected_tit {
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #1e2025;
  font-weight: 700;
  width: 100%;
  margin-bottom: 20px;
}
.expected .expected_return .step1 .range .range_item .range_wrap {
  position: relative;
  width: 100%;
}
.expected .expected_return .step1 .range .range_item .range_wrap .input_range {
  width: 100%;
  height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 15px;
  background: linear-gradient(90deg, #dedfe2 0%, #1677ff 100%);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1), 0 0.21rem 1rem rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.expected .expected_return .step1 .range .range_item .range_wrap .input_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1), 0 0.21rem 1rem rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
}
.expected .expected_return .step1 .range .range_item .range_wrap .input_range::-moz-range-thumb {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  border: none;
  position: relative;
  z-index: 2;
}
.expected .expected_return .step1 .range .range_item .range_wrap .slider-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #191a20;
  pointer-events: none;
  z-index: 3;
}
.expected .expected_return .step1 .range .range_item .range_wrap .value_display {
  font-size: 12px;
  letter-spacing: -0.005em;
  color: #191a20;
  font-weight: 400;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.expected .expected_return .step1 .balance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #1677ff;
  font-weight: 700;
}
.expected .expected_return .step1 .balance .b_item {
  display: inline-block;
}
.expected .expected_return .step1 .balance .eng.wrap {
  text-align: center;
  margin-bottom: 8px;
}
.expected .expected_return .step1 .balance .balance_won {
  font-size: 14px;
  color: #44464a;
  font-weight: 300;
}
.expected .expected_return .step2 .graph_wrap .graph {
  margin-left: -20px;
  /* 특정 데이터(data1)의 색상 및 테두리 */
}
.expected .expected_return .step2 .graph_wrap .graph path.c3-line {
  stroke-width: 3px; /* 선 굵기 */
}
.expected .expected_return .step2 .graph_wrap .graph circle.c3-circle {
  r: 6px; /* 데이터 포인트 반지름 (기본값: 2.5px) */
  stroke-width: 2px; /* 테두리 두께 */
  stroke: #ffffff; /* 테두리 색상: 흰색 */
}
.expected .expected_return .step2 .graph_wrap .graph circle.c3-circle-data1 {
  fill: #1e90ff; /* 데이터 포인트 색상 */
  stroke: #ffffff; /* 흰색 테두리 */
}
@media screen and (min-width: 768px) {
  .expected h2 {
    margin-bottom: 40px;
  }
  .expected .expected_return {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
  .expected .expected_return .step1 .txt-wrap p {
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #44464a;
  }
  .expected .expected_return .step1 .select {
    width: 400px;
  }
  .expected .expected_return .step1 .select-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .expected .expected_return .step1 .select-wrap .range {
    width: 50%;
  }
  .expected .expected_return .step1 .select-wrap .balance {
    font-size: 44px;
    width: 50%;
    padding-left: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .expected h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
  }
  .expected .expected_return {
    margin-bottom: 80px;
  }
  .expected .expected_return .step1 .txt-wrap p {
    font-size: 24px;
    color: #44464a;
  }
  .expected .expected_return .step1 .select {
    width: 400px;
  }
  .expected .expected_return .step1 .select-wrap .range .range_item .expected_tit {
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .expected .expected_return .step1 .select-wrap .range .range_item .range_wrap .slider-label,
  .expected .expected_return .step1 .select-wrap .range .range_item .range_wrap .value_display {
    font-size: 14px;
    letter-spacing: -0.01em;
  }
  .expected .expected_return .step1 .select-wrap .balance {
    font-size: 52px;
    width: 50%;
    padding-left: 25px;
  }
}

.notice_container h1 {
  font-size: 28px;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.notice_container .form_wrap .search_form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.notice_container .form_wrap .search_form select,
.notice_container .form_wrap .search_form input {
  border: 1px solid #dedfe2;
}
.notice_container .form_wrap .search_form .select-group {
  width: auto;
  margin-right: 10px;
}
.notice_container .form_wrap .search_form .select-group select {
  max-width: 150px;
}
.notice_container .form_wrap .search_form .input-group {
  position: relative;
  width: auto;
}
.notice_container .form_wrap .search_form .input-group input {
  width: 225px;
  padding: 0 40px 0 16px;
  box-sizing: border-box;
}
.notice_container .form_wrap .search_form .input-group button {
  display: block;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  padding: 12px 13px 12px;
  margin-right: -13px;
  cursor: pointer;
}
.notice_container .form_wrap .search_form .input-group button img {
  width: 20px;
  height: 20px;
}
.notice_container .form_wrap .total {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 16px;
}
.notice_container .notice_wrap .table_head {
  display: none;
}
.notice_container .notice_wrap .notice_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.notice_container .notice_wrap .notice_list .notice_item {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  width: 100%;
  border: 1px solid #dedfe2;
  border-radius: 10px;
  cursor: pointer;
}
.notice_container .notice_wrap .notice_list .notice_item.empty {
  text-align: center;
  cursor: auto;
}
.notice_container .notice_wrap .notice_list .notice_item:not(:last-child) {
  margin-bottom: 10px;
}
.notice_container .notice_wrap .notice_list .notice_item:last-child {
  margin-bottom: 40px;
}
.notice_container .notice_wrap .notice_list .notice_item:hover {
  background-color: #f8faff;
}
.notice_container .notice_wrap .notice_list .notice_item .num_wrap {
  padding: 20px;
}
.notice_container .notice_wrap .notice_list .notice_item .num_wrap .num {
  margin-bottom: 8px;
  color: #44464a;
  display: none;
}
.notice_container .notice_wrap .notice_list .notice_item .num_wrap .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 8px;
}
.notice_container .notice_wrap .notice_list .notice_item .num_wrap .view {
  margin-right: 12px;
}
.notice_container .notice_wrap .notice_list .notice_item .num_wrap .view::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  margin-right: 4px;
  background-image: url("/assets/images/icon/eye-fill.png");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.notice_container .notice_wrap .notice_list .notice_item .num_wrap .date {
  color: #44464a;
}
@media screen and (min-width: 768px) {
  .notice_container .form_wrap .search_form {
    justify-content: flex-start;
  }
  .notice_container .form_wrap .search_form .input-group {
    position: relative;
  }
  .notice_container .form_wrap .search_form .input-group input {
    width: 400px;
  }
  .notice_container .notice_wrap .notice_list .notice_item:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .notice_container {
    margin-top: 100px;
  }
  .notice_container h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .notice_container .form_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
  }
  .notice_container .form_wrap .search_form {
    order: 2;
    margin-bottom: 0;
  }
  .notice_container .form_wrap .search_form .input-group input {
    width: 334px;
    padding: 15px 21px;
  }
  .notice_container .form_wrap .search_form .input-group a img {
    width: 24px;
    height: 24px;
  }
  .notice_container .form_wrap .total {
    order: 1;
    margin-bottom: 0;
  }
  .notice_container .notice_wrap {
    margin-bottom: 60px;
    border-top: 1px solid #1e2025;
    border-bottom: 1px solid #1e2025;
  }
  .notice_container .notice_wrap .table_head {
    display: block;
    background-color: #f5f6f8;
  }
  .notice_container .notice_wrap .table_head .head_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .notice_container .notice_wrap .table_head .head_list .head_item {
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 500;
    text-align: center;
  }
  .notice_container .notice_wrap .table_head .head_list .head_item.num, .notice_container .notice_wrap .table_head .head_list .head_item.count {
    width: 10%;
  }
  .notice_container .notice_wrap .table_head .head_list .head_item.tit {
    flex-grow: 1;
  }
  .notice_container .notice_wrap .table_head .head_list .head_item.date {
    width: 15%;
  }
  .notice_container .notice_wrap .notice_list .notice_item {
    border-radius: 0;
    border: none;
    border-top: 1px solid #dedfe2;
  }
  .notice_container .notice_wrap .notice_list .notice_item:not(:last-child) {
    margin-bottom: 0;
  }
  .notice_container .notice_wrap .notice_list .notice_item:last-child {
    margin-bottom: 0;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .num,
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .tit {
    margin-bottom: 0;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .num,
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .view {
    width: 10%;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .num {
    display: block;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .tit {
    flex-grow: 1;
    text-align: left;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .view::before {
    background: none;
  }
  .notice_container .notice_wrap .notice_list .notice_item .num_wrap .date {
    width: 15%;
  }
}

.notice_detail_container header {
  border-bottom: 1px solid #dedfe2;
}
.notice_detail_container header h1 a {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin: 20px auto;
}
.notice_detail_container header .tit_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.notice_detail_container header .tit_wrap .tit_1 {
  align-self: flex-start;
}
.notice_detail_container header .tit_wrap .tit_1 h2 {
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 24px;
}
.notice_detail_container header .tit_wrap .tit_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}
.notice_detail_container header .tit_wrap .tit_2 .count,
.notice_detail_container header .tit_wrap .tit_2 .date {
  font-size: 12px;
  color: #44464a;
  font-weight: 400;
}
.notice_detail_container header .tit_wrap .tit_2 .count {
  display: inline-block;
  margin-right: 20px;
}
.notice_detail_container header .tit_wrap .tit_2 .count::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  margin-right: 4px;
  background-image: url("/assets/images/icon/eye-fill.png");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.notice_detail_container .desc {
  margin-bottom: 40px;
}
.notice_detail_container .desc .content {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 400;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  line-height: 21px;
  border-bottom: 1px solid #dedfe2;
  word-break: keep-all;
}
.notice_detail_container .desc .btn-group {
  text-align: center;
}
.notice_detail_container .desc .btn-group a {
  display: inline-block;
  padding: 20px 86px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .notice_detail_container header .tit_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .notice_detail_container header .tit_wrap h2 {
    align-self: flex-start;
  }
  .notice_detail_container header .tit_wrap .date {
    align-self: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .notice_detail_container header {
    margin-top: 100px;
  }
  .notice_detail_container header h1 a {
    font-size: 40px;
  }
  .notice_detail_container header .tit_wrap {
    margin-top: 63px;
    margin-bottom: 32px;
  }
  .notice_detail_container header .tit_wrap .tit_1 h2 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1;
  }
  .notice_detail_container header .tit_wrap .tit_2 {
    margin-bottom: 0;
  }
  .notice_detail_container header .tit_wrap .tit_2 .count,
  .notice_detail_container header .tit_wrap .tit_2 .date {
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }
  .notice_detail_container .desc .content {
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 400;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    line-height: 24px;
  }
  .notice_detail_container .desc .btn-group {
    text-align: center;
  }
  .notice_detail_container .desc .btn-group a {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
}

.resources_container h1 {
  font-size: 28px;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.resources_container .category_wrap {
  margin-bottom: 20px;
}
.resources_container .category_wrap .category_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 0;
  place-items: center;
}
.resources_container .category_wrap .category_list .category_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 100px;
  white-space: nowrap;
}
.resources_container .category_wrap .category_list .category_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #9c9fa3;
  font-weight: 600;
  width: 100%;
  height: 100%;
  text-align: center;
}
.resources_container .category_wrap .category_list .category_item.active {
  border-color: #1677ff;
}
.resources_container .category_wrap .category_list .category_item.active a {
  color: #1677ff;
}
.resources_container .form_wrap .search_form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.resources_container .form_wrap .search_form select,
.resources_container .form_wrap .search_form input {
  border: 1px solid #dedfe2;
}
.resources_container .form_wrap .search_form .select-group {
  width: auto;
  margin-right: 10px;
}
.resources_container .form_wrap .search_form .select-group select {
  max-width: 150px;
}
.resources_container .form_wrap .search_form .input-group {
  position: relative;
  width: auto;
}
.resources_container .form_wrap .search_form .input-group input {
  width: 225px;
  padding: 0 40px 0 16px;
  box-sizing: border-box;
}
.resources_container .form_wrap .search_form .input-group button {
  display: block;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  padding: 12px 13px 12px;
  margin-right: -13px;
  cursor: pointer;
}
.resources_container .form_wrap .search_form .input-group button img {
  width: 20px;
  height: 20px;
}
.resources_container .form_wrap .total {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 16px;
}
.resources_container .resources_wrap .table_head {
  display: none;
}
.resources_container .resources_wrap .resource_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.resources_container .resources_wrap .resource_list .resource_item {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  width: 100%;
  border: 1px solid #dedfe2;
  border-radius: 10px;
  cursor: pointer;
}
.resources_container .resources_wrap .resource_list .resource_item.empty {
  text-align: center;
  cursor: auto;
}
.resources_container .resources_wrap .resource_list .resource_item:not(:last-child) {
  margin-bottom: 10px;
}
.resources_container .resources_wrap .resource_list .resource_item:last-child {
  margin-bottom: 40px;
}
.resources_container .resources_wrap .resource_list .resource_item:hover {
  background-color: #f8faff;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap {
  padding: 20px;
  margin-bottom: 8px;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap span {
  display: inline-block;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .num {
  color: #44464a;
  margin-bottom: 8px;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .num::after {
  content: "·";
  display: inline-block;
  margin: 0 4px;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .ex_name,
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .tit {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 8px;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .view {
  margin-right: 12px;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .view::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  margin-right: 4px;
  background-image: url("/assets/images/icon/eye-fill.png");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.resources_container .resources_wrap .resource_list .resource_item .num_wrap .date {
  color: #44464a;
}
@media screen and (min-width: 768px) {
  .resources_container .category_wrap {
    margin-bottom: 28px;
  }
  .resources_container .form_wrap .search_form {
    justify-content: flex-start;
  }
  .resources_container .form_wrap .search_form .input-group {
    position: relative;
  }
  .resources_container .form_wrap .search_form .input-group input {
    width: 400px;
  }
  .resources_container .resources_wrap .resources_list .resources_item:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .resources_container {
    margin-top: 100px;
  }
  .resources_container h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .resources_container .category_wrap {
    margin-bottom: 44px;
  }
  .resources_container .category_wrap .category_list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .resources_container .category_wrap .category_list .category_item:not(:last-child) {
    margin-right: 40px;
  }
  .resources_container .form_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
  }
  .resources_container .form_wrap .search_form {
    order: 2;
    margin-bottom: 0;
  }
  .resources_container .form_wrap .search_form .input-group input {
    width: 334px;
    padding: 15px 21px;
  }
  .resources_container .form_wrap .search_form .input-group a img {
    width: 24px;
    height: 24px;
  }
  .resources_container .form_wrap .total {
    order: 1;
    margin-bottom: 0;
  }
  .resources_container .resources_wrap {
    margin-bottom: 60px;
    border-top: 1px solid #1e2025;
    border-bottom: 1px solid #1e2025;
  }
  .resources_container .resources_wrap .table_head {
    display: block;
    background-color: #f5f6f8;
  }
  .resources_container .resources_wrap .table_head .head_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .resources_container .resources_wrap .table_head .head_list .head_item {
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 500;
    text-align: center;
  }
  .resources_container .resources_wrap .table_head .head_list .head_item.num, .resources_container .resources_wrap .table_head .head_list .head_item.count {
    width: 10%;
  }
  .resources_container .resources_wrap .table_head .head_list .head_item.tit {
    flex-grow: 1;
  }
  .resources_container .resources_wrap .table_head .head_list .head_item.ex_name, .resources_container .resources_wrap .table_head .head_list .head_item.date {
    width: 15%;
  }
  .resources_container .resources_wrap .resource_list .resource_item {
    border-radius: 0;
    border: none;
    border-top: 1px solid #dedfe2;
  }
  .resources_container .resources_wrap .resource_list .resource_item:not(:last-child) {
    margin-bottom: 0;
  }
  .resources_container .resources_wrap .resource_list .resource_item:last-child {
    margin-bottom: 0;
  }
  .resources_container .resources_wrap .resource_list .resource_item:hover {
    background-color: #f8faff;
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    text-align: center;
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .num::after {
    content: "";
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .num,
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .tit {
    margin-bottom: 0;
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .num,
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .view {
    width: 10%;
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .view::before {
    background: none;
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .tit {
    flex-grow: 1;
    text-align: left;
  }
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .ex_name,
  .resources_container .resources_wrap .resource_list .resource_item .num_wrap .date {
    width: 15%;
  }
}

.resources_detail_container header {
  border-bottom: 1px solid #dedfe2;
}
.resources_detail_container header h1 a {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin: 20px auto;
}
.resources_detail_container header .tit_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.resources_detail_container header .tit_wrap .tit_1 {
  align-self: flex-start;
}
.resources_detail_container header .tit_wrap .tit_1 h2 {
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 24px;
}
.resources_detail_container header .tit_wrap .tit_1 .exchange {
  font-size: 12px;
  color: #1677ff;
  font-weight: 700;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
  border: 1px solid #1677ff;
  border-radius: 12px;
}
.resources_detail_container header .tit_wrap .tit_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}
.resources_detail_container header .tit_wrap .tit_2 .count,
.resources_detail_container header .tit_wrap .tit_2 .date {
  font-size: 12px;
  color: #44464a;
  font-weight: 400;
}
.resources_detail_container header .tit_wrap .tit_2 .count {
  display: inline-block;
  margin-right: 20px;
}
.resources_detail_container header .tit_wrap .tit_2 .count::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url("/assets/images/icon/eye-fill.png");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.resources_detail_container .desc {
  margin-bottom: 40px;
}
.resources_detail_container .desc .content {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 400;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  line-height: 21px;
  border-bottom: 1px solid #dedfe2;
  word-break: keep-all;
}
.resources_detail_container .desc .btn-group {
  text-align: center;
}
.resources_detail_container .desc .btn-group a {
  display: inline-block;
  padding: 20px 86px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .resources_detail_container header .tit_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .resources_detail_container header .tit_wrap h2 {
    align-self: flex-start;
  }
  .resources_detail_container header .tit_wrap .tit_1 {
    align-self: flex-start;
  }
  .resources_detail_container header .tit_wrap .tit_2 .date {
    align-self: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .resources_detail_container header {
    margin-top: 100px;
  }
  .resources_detail_container header h1 a {
    font-size: 40px;
  }
  .resources_detail_container header .tit_wrap {
    margin-top: 63px;
    margin-bottom: 32px;
  }
  .resources_detail_container header .tit_wrap .tit_1 h2 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1;
  }
  .resources_detail_container header .tit_wrap .tit_2 {
    margin-bottom: 0;
  }
  .resources_detail_container header .tit_wrap .tit_2 .count,
  .resources_detail_container header .tit_wrap .tit_2 .date {
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }
  .resources_detail_container .desc .content {
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 400;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    line-height: 24px;
  }
  .resources_detail_container .desc .btn-group {
    text-align: center;
  }
  .resources_detail_container .desc .btn-group a {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
}

.profit_container h1 {
  font-size: 28px;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.profit_container .profit_wrap .desc {
  font-size: 14px;
  color: #44464a;
  margin-bottom: 20px;
  text-align: center;
}
.profit_container .profit_wrap .profit_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.profit_container .profit_wrap .profit_list .profit_item {
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  width: 100%;
  padding: 40px 24px;
  border: 1px solid #dedfe2;
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
.profit_container .profit_wrap .profit_list .profit_item:not(:last-child) {
  margin-bottom: 10px;
}
.profit_container .profit_wrap .profit_list .profit_item.empty {
  cursor: auto;
}
.profit_container .profit_wrap .profit_list .profit_item.empty:hover {
  background-color: #fff;
}
.profit_container .profit_wrap .profit_list .profit_item:hover {
  background-color: #f8faff;
}
.profit_container .profit_wrap .profit_list .profit_item a {
  display: inline-block;
  width: 100%;
  padding: 40px 24px;
  margin: -40px -24px;
}
.profit_container .profit_wrap .profit_list .profit_item .label_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profit_container .profit_wrap .profit_list .profit_item .label_wrap .label {
  font-size: 12px;
  letter-spacing: -0.005em;
  padding: 4px 8px;
  margin-bottom: 4px;
  border: 1px solid #1677ff;
  border-radius: 18px;
  color: #1677ff;
}
.profit_container .profit_wrap .profit_list .profit_item .label_wrap .label:not(:last-child) {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .profit_container .profit_wrap .desc {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
  .profit_container .profit_wrap .profit_list {
    flex-direction: row;
  }
  .profit_container .profit_wrap .profit_list .profit_item {
    margin-bottom: 0;
  }
  .profit_container .profit_wrap .profit_list .profit_item:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .profit_container {
    margin-top: 100px;
  }
  .profit_container h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .profit_container .profit_wrap .desc {
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 50px;
  }
  .profit_container .profit_wrap .profit_list {
    margin-bottom: 80px;
  }
  .profit_container .profit_wrap .profit_list .profit_item .label_wrap .label {
    margin-bottom: 12px;
  }
}

.login_container .login_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.login_container .login_wrap h1 {
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 700;
  padding: 20px 0;
  text-align: center;
}
.login_container .login_wrap form {
  padding: calc(20px) calc(20px) 40px;
  margin: auto -20px -20px;
  background-color: #f5f6f8;
  border-radius: 12px;
}
.login_container .login_wrap form .content_wrap .content_list {
  margin-bottom: 40px;
}
.login_container .login_wrap form .content_wrap .content_list .content_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.login_container .login_wrap form .content_wrap .content_list .content_item:not(:last-child) {
  margin-bottom: 20px;
}
.login_container .login_wrap form .content_wrap .content_list .content_item label {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}
.login_container .login_wrap form .content_wrap .content_list .content_item label.required::after {
  right: -10px;
  margin-left: 10px;
}
.login_container .login_wrap form .btn_group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_container .login_wrap form .btn_group button {
  width: 200px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .login_container .login_wrap h1 {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1200px) {
  .login_container {
    margin-top: 100px;
  }
  .login_container .login_wrap {
    margin-bottom: 60px;
  }
  .login_container .login_wrap h1 {
    font-size: 40px;
    padding-top: 20px;
  }
  .login_container .login_wrap form {
    padding: calc(20px + 30px) calc(20px + 30px);
    margin: auto calc((20px + 30px) * -1) -20px;
    border-radius: 32px;
  }
  .login_container .login_wrap form .content_wrap .content_list {
    margin-bottom: 80px;
  }
  .login_container .login_wrap form .content_wrap .content_list .content_item:not(:last-child) {
    margin-bottom: 32px;
  }
  .login_container .login_wrap form .content_wrap .content_list .content_item label {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .login_container .login_wrap form .content_wrap .content_list .content_item input {
    font-size: 20px;
  }
  .login_container .login_wrap form .btn_group {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .login_container .login_wrap form .btn_group button {
    font-size: 16px;
    letter-spacing: -0.02em;
    width: 100%;
    padding: 16px 24px;
  }
}

.faq {
  background: #fff;
}
.faq__list {
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 0;
  overflow: hidden;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  position: relative;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #1677ff;
  background: rgba(22, 119, 255, 0.08);
  transition: transform 0.2s;
}
.faq p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}
.faq p.faq_content {
  margin-top: 10px;
}

.cta {
  background: linear-gradient(135deg, #061225, #102c73);
}
.cta__inner {
  display: grid;
  gap: 22px;
  padding: 60px 20px;
  border-radius: 32px;
  color: #fff;
  text-align: center;
}
.cta__inner .cta__copy {
  margin: 0 0 24px;
}
.cta__inner .cta__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -1.2px;
  line-height: 1.25;
  word-break: keep-all;
}
.cta__inner .cta__copy p {
  margin: 0;
  color: #cbd5e1;
}
.cta__inner a {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .faq .container {
    padding: 0;
  }
  .faq__list {
    grid-template-columns: none;
  }
  .cta__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 46px 56px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 34px 24px;
  color: #fff;
  background: radial-gradient(circle at 75% 25%, #123d8a, #061225 58%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/bg.svg") center/cover no-repeat;
  opacity: 0.38;
  pointer-events: none;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%, rgba(22, 119, 255, 0.12));
  pointer-events: none;
}

.site-header {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1677ff, #0047ff);
  font-size: 13px;
  font-weight: 900;
}
.site-header__brand {
  display: grid;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.8px;
}
.site-header__brand small {
  display: none;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-header__nav {
  display: none;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__login {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
}

.hero__copy .eyebrow {
  font-size: 14px;
  color: #1677ff;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.04px;
  text-transform: uppercase;
}
.hero__copy h1 {
  margin: 0 0 28px 0;
  font-size: clamp(46px, 11vw, 64px);
  line-height: 1.2;
  letter-spacing: -1px;
  word-break: keep-all;
}
.hero__copy h1 strong {
  color: #1677ff;
  text-shadow: 0 0 35px rgba(22, 119, 255, 0.45);
}
.hero__copy .hero__desc {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 480px;
  line-height: 1.4;
  word-break: keep-all;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.hero__cta span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.hero__features li {
  font-size: 14px;
  color: #dbeafe;
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}
.hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1677ff;
  box-shadow: 0 0 14px rgba(22, 119, 255, 0.8);
}

.hero__visual {
  position: relative;
  height: 330px;
  isolation: isolate;
}
.hero__visual .hero__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 310px;
  height: 310px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.5), rgba(22, 119, 255, 0.12) 42%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.hero__visual .hero__ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  border: 2px solid rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 36px rgba(22, 119, 255, 0.35);
  z-index: 1;
}
.hero__visual .hero__ring--one {
  width: 290px;
  height: 112px;
  transform: translate(-50%, -36%) rotate(-8deg);
}
.hero__visual .hero__ring--two {
  width: 225px;
  height: 88px;
  transform: translate(-50%, -30%) rotate(12deg);
  opacity: 0.6;
}
.hero__visual .hero__platform {
  position: absolute;
  inset: auto auto 42px 50%;
  width: 260px;
  height: 54px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.55), rgba(22, 119, 255, 0.15) 45%, transparent 70%);
  filter: blur(2px);
  z-index: 1;
}
.hero__visual .hero__orb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  color: #fff;
  font-size: 44px;
  font-weight: 950;
  background: linear-gradient(145deg, #29b6ff, #123cff 64%, #061c6b);
  box-shadow: inset 0 12px 20px rgba(255, 255, 255, 0.18), 0 0 80px rgba(22, 119, 255, 0.65);
}

.coin {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  box-shadow: inset 0 8px 14px rgba(255, 255, 255, 0.22), 0 18px 35px rgba(0, 0, 0, 0.28);
  animation: floatCoin 5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.coin img {
  width: 32px;
  height: 32px;
  display: block;
}
.coin--btc {
  right: 16%;
  top: 7%;
  background: linear-gradient(145deg, #ffbd45, #f59e0b);
}
.coin--eth {
  left: 23%;
  top: 8%;
  background: linear-gradient(145deg, #a78bfa, #8b5cf6);
  animation-delay: -0.8s;
}
.coin--xrp {
  left: 10%;
  top: 46%;
  background: linear-gradient(145deg, #334155, #020617);
  animation-delay: -1.4s;
}
.coin--usdt {
  right: 9%;
  top: 42%;
  background: linear-gradient(145deg, #5eead4, #10b981);
  animation-delay: -0.4s;
}
.coin--ltc {
  left: 30%;
  bottom: 9%;
  background: linear-gradient(145deg, #94a3b8, #475569);
  animation-delay: -2s;
}
.coin--sol {
  right: 27%;
  bottom: 8%;
  background: linear-gradient(145deg, #34d399, #2563eb);
  animation-delay: -1s;
}

.hero__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
.hero__stats article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  padding: 20px;
  border-radius: 18px;
}
.hero__stats span,
.hero__stats em {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  font-style: normal;
}
.hero__stats strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 26px;
  letter-spacing: -1px;
}

@keyframes floatCoin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media screen and (min-width: 768px) {
  .hero {
    min-height: 0;
    padding-top: 22px;
  }
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 24px 0;
  }
  .site-header__brand small {
    display: block;
  }
  .site-header__login {
    display: inline-flex;
    color: #dbeafe;
    font-size: 14px;
    font-weight: 800;
  }
  .hero__inner {
    padding: 30px 0;
  }
  .hero__copy .eyebrow {
    font-size: 16px;
    color: #1677ff;
  }
  .hero__copy h1 {
    font-size: 48px;
  }
  .hero__features {
    grid-template-columns: repeat(2, auto);
    justify-content: flex-start;
  }
  .hero__visual {
    height: 420px;
  }
  .hero__visual .hero__orb {
    width: 190px;
    height: 190px;
    font-size: 56px;
  }
  .hero__visual .hero__halo {
    width: 380px;
    height: 380px;
  }
  .hero__visual .hero__ring--one {
    width: 390px;
    height: 138px;
  }
  .hero__visual .hero__ring--two {
    width: 300px;
    height: 108px;
  }
  .coin {
    width: 74px;
    height: 74px;
    font-size: 34px;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .site-header__nav {
    display: flex;
    gap: 34px;
  }
  .site-header__nav a {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 800;
    transition: color 0.2s;
  }
  .site-header__nav a:hover {
    color: #fff;
  }
  .hero__copy h1 {
    font-size: 62px;
  }
  .hero__visual {
    height: 470px;
  }
  .hero__visual .hero__orb {
    width: 220px;
    height: 220px;
  }
  .hero__visual .hero__ring--one {
    width: 470px;
    height: 156px;
  }
  .hero__visual .hero__ring--two {
    width: 350px;
    height: 120px;
  }
}
.market__grid {
  display: grid;
  gap: 18px;
}
.market .tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  cursor: help;
}
.market .tooltip--right .tooltip__content {
  left: auto;
  right: 0;
  transform: none;
}
.market .tooltip--right .tooltip__content::after {
  left: auto;
  right: 10px;
  transform: none;
}
.market .tooltip--left .tooltip__content {
  left: -20px;
  transform: none;
}
.market .tooltip--left .tooltip__content::after {
  left: 10px;
  transform: none;
}
.market .tooltip svg {
  width: 14px;
  height: 14px;
  stroke: #94a3b8;
  stroke-width: 2;
  fill: none;
  transition: 0.2s;
}
.market .tooltip:hover svg {
  stroke: #1677ff;
}
.market .tooltip__content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  width: 240px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.market .tooltip__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(15, 23, 42, 0.96);
}
.market .tooltip:hover .market .tooltip__content {
  opacity: 1;
  visibility: visible;
}
.market .tooltip.is-open .tooltip__content {
  opacity: 1;
  visibility: visible;
}

.simulator,
.coin-table {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 24px;
}
.simulator h2,
.coin-table h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -1px;
}
.simulator p,
.coin-table p {
  margin: 0 0 22px;
  color: #6b7280;
  line-height: 1.7;
}

.simulator {
  --range-progress: 9.24%;
}
.simulator__field {
  margin-top: 28px;
}
.simulator__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.simulator__label strong {
  font-size: 15px;
  color: #2563eb;
}
.simulator label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}
.simulator .amount-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.simulator .amount-input:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.simulator .amount-input input {
  width: 100%;
  height: 58px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}
.simulator .amount-input span {
  flex: 0 0 auto;
  font-weight: 700;
}
.simulator__limit {
  margin-top: 8px;
  font-size: 12px;
  color: #94a3b8;
  text-align: right;
}
.simulator input[type=range] {
  width: 100%;
  height: 6px;
  margin: 8px 0;
  appearance: none;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, #2563eb 0%, #2563eb var(--range-progress), #e2e8f0 var(--range-progress), #e2e8f0 100%);
}
.simulator input[type=range]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}
.simulator input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}
.simulator .range-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}
.simulator__result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.simulator__result > div {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
}
.simulator__result > div span,
.simulator__result > div strong {
  display: block;
}
.simulator__result > div span {
  margin-bottom: 7px;
  font-size: 13px;
  color: #64748b;
}
.simulator__result > div strong {
  font-size: 18px;
}
.simulator__result .simulator__result-total {
  grid-column: 1/-1;
  background: rgba(37, 99, 235, 0.08);
}
.simulator__result .simulator__result-total strong {
  color: #2563eb;
  font-size: 22px;
}
.simulator small {
  display: block;
  margin-top: 14px;
  line-height: 1.5;
  color: #94a3b8;
}

.coin-table {
  overflow-x: auto;
}
.coin-table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.coin-table__head a {
  color: #1677ff;
  font-size: 14px;
  font-weight: 900;
}
.coin-table table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.coin-table table th,
.coin-table table td {
  padding: 14px 10px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
}
.coin-table table th {
  color: #6b7280;
  font-size: 13px;
  font-weight: 900;
  background: #f8fbff;
}
.coin-table table td {
  font-weight: 700;
}
.coin-table table .up {
  color: #ef4444;
}

@media screen and (min-width: 768px) {
  .market .container {
    padding: 0;
  }
  .market__grid {
    align-items: stretch;
  }
  .simulator__result {
    grid-template-columns: 1fr 1fr;
  }
}
.performance {
  background: #f6f8fc;
}
.performance__grid {
  display: grid;
  gap: 16px;
}

.profit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.profit-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.15), transparent 66%);
}
.profit-card span {
  display: block;
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
}
.profit-card strong {
  display: block;
  margin: 12px 0 6px;
  color: #1677ff;
  font-size: 28px;
  letter-spacing: -1px;
}
.profit-card em {
  color: #13b981;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.profit-card svg {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  width: calc(100% - 40px);
  height: 58px;
}
.profit-card svg polyline {
  fill: none;
  stroke: #1677ff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 8px rgba(22, 119, 255, 0.24));
}
.profit-card--green strong {
  color: #13b981;
}
.profit-card--green svg polyline {
  stroke: #13b981;
  filter: drop-shadow(0 6px 8px rgba(19, 185, 129, 0.25));
}
.profit-card--purple strong {
  color: #8b5cf6;
}
.profit-card--purple svg polyline {
  stroke: #8b5cf6;
  filter: drop-shadow(0 6px 8px rgba(139, 92, 246, 0.25));
}

.trade-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 24px;
}
.trade-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
}
.trade-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.trade-card li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #e5e7eb;
}
.trade-card li:last-child {
  border-bottom: 0;
}
.trade-card li b {
  font-size: 14px;
}
.trade-card li span {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.trade-card li span.buy {
  color: #1677ff;
  background: rgba(22, 119, 255, 0.09);
}
.trade-card li span.sell {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}
.trade-card li em {
  color: #13b981;
  font-style: normal;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .performance .container {
    padding: 0;
  }
  .performance__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .performance__grid > :last-child {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 1200px) {
  .performance__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .performance__grid > :last-child {
    grid-column: auto;
  }
  .trade-card {
    grid-column: auto;
  }
}
.process {
  background: #fff;
}
.process__inner {
  display: grid;
  gap: 28px;
}
.process__copy h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -1.4px;
  margin-bottom: 10px;
}
.process__copy .process__desc {
  max-width: 430px;
  margin-bottom: 10px;
  color: #6b7280;
  line-height: 1.25;
  word-break: keep-all;
}
.process__steps {
  display: grid;
  gap: 16px;
}
.process__steps article {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.process__steps article::before {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.12), transparent 70%);
}
.process__steps article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}
.process__steps article span {
  color: #1677ff;
  font-size: 13px;
  font-weight: 950;
}
.process__steps article strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 18px;
}
.process__steps article p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

@media screen and (min-width: 768px) {
  .process__inner {
    padding: 0;
  }
  .process__copy .process__desc {
    max-width: none;
    font-size: 16px;
  }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.review {
  overflow: hidden;
  background: #fff;
}
.review .section-head {
  margin-bottom: 22px;
}
.review .review-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 10px 52px;
}
.review .review-slider .swiper-wrapper {
  align-items: stretch;
}
.review .review-slider .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.review .review-slider__pagination {
  bottom: 8px !important;
}
.review .review-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  opacity: 1;
  border-radius: 999px;
  background: #cbd5e1;
  transition: width 0.25s ease, background-color 0.25s ease;
}
.review .review-slider__pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: #1677ff;
}
.review .review-slider__prev, .review .review-slider__next {
  width: 28px;
  height: 28px;
  margin-top: -20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(6, 18, 37, 0.08);
  transition: 0.2s;
}
.review .review-slider__prev::after, .review .review-slider__next::after {
  font-size: 9px;
  font-weight: 900;
  color: rgba(6, 18, 37, 0.65);
}
.review .review-slider__prev:hover, .review .review-slider__next:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 18px rgba(6, 18, 37, 0.12);
}
.review .review-slider__prev:hover::after, .review .review-slider__next:hover::after {
  color: #1677ff;
}
.review .review-slider__prev {
  left: 10px;
}
.review .review-slider__next {
  right: 10px;
}
.review .review-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(6, 18, 37, 0.08);
  border-radius: 20px;
  box-sizing: border-box;
  background: radial-gradient(circle at 100% 0%, rgba(22, 119, 255, 0.08), transparent 34%), #fff;
  box-shadow: 0 12px 32px rgba(6, 18, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review .review-card::after {
  content: "“";
  position: absolute;
  right: 16px;
  bottom: -10px;
  color: rgba(22, 119, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.review .review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 119, 255, 0.18);
  box-shadow: 0 18px 42px rgba(6, 18, 37, 0.1);
}
.review .review-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.review .review-card__avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 15px;
  color: #1677ff;
  background: rgba(22, 119, 255, 0.08);
}
.review .review-card__avatar svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}
.review .review-card__avatar--green {
  color: #18b981;
  border-color: rgba(24, 185, 129, 0.15);
  background: rgba(24, 185, 129, 0.09);
}
.review .review-card__avatar--purple {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.15);
  background: rgba(124, 58, 237, 0.09);
}
.review .review-card__avatar--orange {
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.15);
  background: rgba(234, 88, 12, 0.09);
}
.review .review-card__avatar--blue {
  color: #0284c7;
  border-color: rgba(2, 132, 199, 0.15);
  background: rgba(2, 132, 199, 0.09);
}
.review .review-card__avatar--pink {
  color: #db2777;
  border-color: rgba(219, 39, 119, 0.15);
  background: rgba(219, 39, 119, 0.09);
}
.review .review-card__user {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review .review-card__user strong {
  min-width: 0;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review .review-card__badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #1677ff;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(22, 119, 255, 0.08);
}
.review .review-card__profit {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 5px 10px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(22, 119, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #f2f7ff);
}
.review .review-card__profit span {
  grid-column: 1/-1;
  color: #6b7280;
  font-size: 12px;
}
.review .review-card__profit strong,
.review .review-card__profit em {
  min-width: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.review .review-card__profit strong {
  overflow: hidden;
  color: #111827;
  text-overflow: ellipsis;
}
.review .review-card__profit em {
  justify-self: end;
  color: #18b981;
  font-style: normal;
}
.review .review-card blockquote {
  position: relative;
  z-index: 1;
  min-height: 72px;
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  word-break: keep-all;
}
.review .review-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(6, 18, 37, 0.07);
}
.review .review-card__meta span {
  color: #6b7280;
  font-size: 12px;
}
.review .review-card__meta strong {
  color: #18b981;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 767px) {
  .review .review-slider {
    overflow: hidden;
    padding: 8px 0 48px;
  }
  .review .review-slider__prev, .review .review-slider__next {
    display: none;
  }
  .review .review-card {
    padding: 20px;
  }
  .review .review-card__profit strong,
  .review .review-card__profit em {
    font-size: 18px;
  }
  .review .review-card blockquote {
    min-height: 72px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .review .review-slider {
    padding-right: 8px;
    padding-left: 8px;
  }
  .review .review-slider__prev, .review .review-slider__next {
    width: 30px;
    height: 30px;
    margin-top: -24px;
  }
  .review .review-slider__prev::after, .review .review-slider__next::after {
    font-size: 10px;
  }
  .review .review-slider__prev {
    left: 8px;
  }
  .review .review-slider__next {
    right: 8px;
  }
  .review .review-card {
    padding: 22px;
  }
  .review .review-card__user {
    align-items: flex-start;
  }
  .review .review-card blockquote {
    min-height: 96px;
  }
}
@media (min-width: 1200px) {
  .review .review-slider {
    padding-right: 10px;
    padding-left: 10px;
  }
  .review .review-slider__prev, .review .review-slider__next {
    width: 32px;
    height: 32px;
  }
  .review .review-slider__prev::after, .review .review-slider__next::after {
    font-size: 11px;
  }
  .review .review-slider__prev {
    left: 10px;
  }
  .review .review-slider__next {
    right: 10px;
  }
  .review .review-card {
    padding: 26px;
  }
  .review .review-card__profit {
    padding: 18px;
  }
  .review .review-card__profit strong,
  .review .review-card__profit em {
    font-size: 22px;
  }
  .review .review-card blockquote {
    min-height: 78px;
    font-size: 15px;
  }
}
.safety {
  background: linear-gradient(180deg, #fff 0, #f6f8fc 100%);
}
.safety__panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #061225, #0b1b35 55%, #102c73);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.25);
}
.safety__panel::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.45), transparent 66%);
}
.safety__title {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.safety__title h2 {
  margin: 0 0 10px 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1.2px;
}
.safety__title p {
  color: #cbd5e1;
  line-height: 1.75;
}
.safety__title p.safety__desc {
  line-height: 1.25;
  word-break: keep-all;
}
.safety__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.safety__grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  padding: 22px;
  border-radius: 18px;
}
.safety__grid article strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.safety__grid article p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}
.safety .notice {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

@media screen and (min-width: 768px) {
  .safety .container {
    padding: 0;
  }
  .safety__panel {
    padding: 42px;
  }
  .safety__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.insights {
  overflow: hidden;
  background: #eef2f8;
}
.insights .vol-chart-grid {
  display: grid;
  gap: 16px;
}
.insights .vol-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  min-width: 0;
  border-radius: 22px;
}
.insights .vol-card--full {
  grid-column: 1/-1;
}
.insights .vol-market-insight {
  overflow: hidden;
  padding: 0;
}
.insights .vol-market-insight__hero {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 26px;
  color: #fff;
  background: radial-gradient(circle at 90% 0%, rgba(22, 119, 255, 0.45), transparent 42%), linear-gradient(135deg, #061225, #12316c);
}
.insights .vol-market-insight__hero::before, .insights .vol-market-insight__hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.insights .vol-market-insight__hero::before {
  top: -70px;
  right: -45px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.insights .vol-market-insight__hero::after {
  right: 20px;
  bottom: -90px;
  width: 150px;
  height: 150px;
  background: rgba(22, 119, 255, 0.12);
  filter: blur(12px);
}
.insights .vol-market-insight__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #8cbaff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.05);
}
.insights .vol-market-insight__title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.insights .vol-market-insight__desc {
  font-size: 14px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #c6d1e4;
  line-height: 1.75;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.insights .vol-market-insight__desc br {
  display: none;
}
.insights .vol-market-compare {
  position: relative;
  overflow-x: auto;
  padding: 18px 16px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 119, 255, 0.4) transparent;
  -webkit-overflow-scrolling: touch;
}
.insights .vol-market-compare::after {
  content: "좌우로 밀어서 비교하세요 →";
  display: block;
  padding: 10px 2px 0;
  color: #6b7280;
  font-size: 11px;
  text-align: right;
}
.insights .vol-market-compare::-webkit-scrollbar {
  height: 4px;
}
.insights .vol-market-compare::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.35);
}
.insights .vol-market-table {
  font-size: 14px;
  letter-spacing: -0.01em;
  width: 100%;
  min-width: 620px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
}
.insights .vol-market-table th,
.insights .vol-market-table td {
  padding: 12px 10px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  white-space: nowrap;
}
.insights .vol-market-table th:last-child,
.insights .vol-market-table td:last-child {
  border-right: 0;
}
.insights .vol-market-table tr:last-child td {
  border-bottom: 0;
}
.insights .vol-market-table th {
  color: #6b7280;
  font-weight: 800;
  background: #f7f9fd;
}
.insights .vol-market-table th:first-child,
.insights .vol-market-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 84px;
  font-weight: 800;
  background: #f7f9fd;
  box-shadow: 5px 0 12px rgba(6, 18, 37, 0.05);
}
.insights .vol-market-table th:first-child {
  z-index: 3;
}
.insights .vol-market-table .is-highlight {
  font-weight: 400;
  color: #fff;
  background: #173f8e;
}
.insights .vol-market-compare-cards {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.insights .market-compare-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(6, 18, 37, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 18, 37, 0.05);
}
.insights .market-compare-card::after {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(6, 18, 37, 0.025);
  pointer-events: none;
}
.insights .market-compare-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
.insights .market-compare-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6, 18, 37, 0.08);
  border-radius: 15px;
  font-size: 23px;
  background: #f7f9fc;
}
.insights .market-compare-card__label {
  display: block;
  margin-bottom: 4px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insights .market-compare-card h3 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.insights .market-compare-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.insights .market-compare-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(6, 18, 37, 0.07);
}
.insights .market-compare-card__list li:first-child {
  padding-top: 0;
}
.insights .market-compare-card__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.insights .market-compare-card__list li span {
  color: #6b7280;
  font-size: 13px;
}
.insights .market-compare-card__list li strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}
.insights .market-compare-card--stock .market-compare-card__icon {
  background: #f3f5f8;
}
.insights .market-compare-card--auto {
  border-color: rgba(22, 119, 255, 0.18);
  background: radial-gradient(circle at 100% 0%, rgba(22, 119, 255, 0.14), transparent 38%), linear-gradient(180deg, #f9fcff, #f1f7ff);
}
.insights .market-compare-card--auto::after {
  background: rgba(22, 119, 255, 0.06);
}
.insights .market-compare-card--auto .market-compare-card__icon {
  border-color: rgba(22, 119, 255, 0.15);
  background: rgba(22, 119, 255, 0.09);
}
.insights .market-compare-card--auto .market-compare-card__label,
.insights .market-compare-card--auto h3 {
  color: #1677ff;
}
.insights .market-compare-card--auto .market-compare-card__list li {
  border-color: rgba(22, 119, 255, 0.1);
}
.insights .market-compare-card--auto .market-compare-card__list li strong {
  color: #0051c3;
}
.insights .vol-market-message {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 16px 18px;
}
.insights .vol-market-message__item {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.08);
  border-radius: 16px;
  text-align: left;
  background: radial-gradient(circle at 100% 0%, rgba(22, 119, 255, 0.08), transparent 38%), linear-gradient(145deg, #fff, #f5f8fd);
}
.insights .vol-market-message__item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 3px;
  height: 34px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #1677ff, #76b3ff);
}
.insights .vol-market-message__item strong {
  display: block;
  padding-left: 4px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.insights .vol-market-footnote {
  position: relative;
  overflow: hidden;
  margin: 0 16px 18px;
  padding: 18px;
  border-radius: 16px;
  color: #bdc9dc;
  background: radial-gradient(circle at 100% 0%, rgba(22, 119, 255, 0.24), transparent 42%), #061225;
}
.insights .vol-market-footnote strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}
.insights .vol-market-footnote strong::before {
  content: "!";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #87b5ff;
  font-size: 11px;
}
.insights .vol-market-footnote p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.insights .vol-market-footnote p br {
  display: none;
}

@media screen and (min-width: 768px) {
  .insights .container {
    padding: 0;
  }
  .insights .vol-market-compare::after {
    content: "";
  }
  .insights .vol-market-compare-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px 30px;
  }
  .insights .market-compare-card {
    padding: 26px;
  }
  .insights .market-compare-card__head {
    margin-bottom: 24px;
  }
  .insights .market-compare-card__icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .insights .market-compare-card h3 {
    font-size: 22px;
  }
  .insights .market-compare-card__list li {
    padding: 17px 0;
  }
  .insights .market-compare-card__list li span {
    font-size: 14px;
  }
  .insights .market-compare-card__list li strong {
    font-size: 15px;
  }
  .insights .vol-market-message {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 24px 30px;
  }
}
@media (min-width: 1200px) {
  .insights .vol-market-compare-cards {
    gap: 18px;
    padding: 30px 42px;
  }
  .insights .market-compare-card {
    padding: 30px;
  }
  .insights .market-compare-card__icon {
    width: 56px;
    height: 56px;
  }
  .insights .market-compare-card h3 {
    font-size: 24px;
  }
}

/*# sourceMappingURL=style.css.map */
