:root{
  --crp-bg:#000000;
  --crp-panel:#12161c;
  --crp-panel2:#0f1318;
  --crp-text:#e8edf3;
  --crp-muted:#a9b2bf;
  --crp-accent:#66ff00;
  --crp-radius:16px;
  --crp-shadow:0 12px 30px rgba(0,0,0,.35);
  --bg:#0b0d0f;
  --text:#e7ecef;
  --muted:#98a3ad;
  --green:#27e07a;
  --pink:#ff2b83;
  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --line: rgba(255,255,255,.06);

  /* 드로어 배경을 더 진하게 */
  --drawer-bg: #14181c;        /* 진한 회색 */
  --drawer-bg2: #101417;       /* 더 진한 그라데이션 */
  
  --nt-line: rgba(255,255,255,.08);
  --nt-line2: rgba(255,255,255,.12);
  --nt-text: rgba(255,255,255,.92);
  --nt-muted: rgba(255,255,255,.60);
  --nt-shadow: 0 16px 40px rgba(0,0,0,.45);
  --nt-radius: 18px;
  --nt-green: #27e07a;
  
  --nv-text: rgba(255,255,255,.92);
  --nv-muted: rgba(255,255,255,.55);
  --nv-line: rgba(255,255,255,.12);
  --nv-line2: rgba(255,255,255,.08);
  --nv-shadow: 0 16px 40px rgba(0,0,0,.45);
  --nv-radius: 18px;
  
  --dep-bg: rgba(255,255,255,.02);
  --dep-line: rgba(255,255,255,.08);
  --dep-line2: rgba(255,255,255,.10);
  --dep-text: rgba(255,255,255,.92);
  --dep-muted: rgba(255,255,255,.60);
  --dep-green: #7CFF2B;
  --dep-red: #ff2b83;
  --dep-shadow: 0 16px 40px rgba(0,0,0,.45);
  --dep-radius: 18px;
  
  --mbox-text: rgba(255,255,255,.92);
  --mbox-muted: rgba(255,255,255,.55);
  --mbox-line: rgba(255,255,255,.08);
  --mbox-shadow: 0 16px 40px rgba(0,0,0,.45);
  --mbox-radius: 18px;
  --mbox-green: #27e07a;
  
  --qa_bg: rgba(22,24,26,.96);
  --qa_panel: rgba(28,31,34,.96);
  --qa_line: rgba(255,255,255,.08);
  --qa_line2: rgba(255,255,255,.12);
  --qa_text: rgba(255,255,255,.92);
  --qa_muted: rgba(255,255,255,.55);
  --qa_field: rgba(0,0,0,.35);
  --qa_field2: rgba(0,0,0,.55);
  --qa_btnDark: rgba(0,0,0,.55);
  --qa_lime1: #F5E64A;
  --qa_lime1: #7CFF19;
}

html,body{ height:100%; }
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple SD Gothic Neo", "Noto Sans KR", "Pretendard", sans-serif;
  background: var(--bg);
  color: var(--text);
}
body.no-scroll{ overflow:hidden; }

.crp-wrap{ background:var(--crp-bg); color:var(--crp-text); }
.crp-wrap img{ max-width:100%; display:block; }

.crp-containers{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}


.crp-container{
  width:min(800px, calc(100% - 40px));
  margin:0 auto;
}

.crp-accent{ color:var(--crp-accent); }

/* buttons */
.crp-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:transparent; color:var(--crp-text);
  font-weight:800;
}
.crp-btn--primary{ background:var(--crp-accent); color:#0b0d10; border-color:transparent; }
.crp-btn--ghost{ background:rgba(255,255,255,.06); }
.crp-btn--lg{ padding:12px 18px; border-radius:14px; }

/* ===== Header ===== */
.crp-header{
  position:absolute; /* 히어로 위에 떠있게 */
  top:0; left:0; right:0;
  z-index:50;
  padding: 22px 0;
}
.crp-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.crp-brand img{ height:28px; display:block; }

.crp-header__auth{ display:flex; gap:12px; }
.crp-hbtn{
  height:44px;
  padding:0 18px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
}
.crp-hbtn--dark{ background:rgba(0,0,0,.35); color:#fff; }
.crp-hbtn--lime{ background:var(--crp-accent); color:#101010; border-color:transparent; }

/* 로그인 후 메뉴 */
.crp-gnb{ display:flex; gap:26px; align-items:center; }
.crp-gnb a{ color:#fff; font-weight:800; opacity:.9; }
.crp-gnb a:hover{ opacity:.7; }

/* ===== Hero 100vh ===== */
.crp-hero--vh{
  position:relative;
  height:100vh;
  min-height: 640px; /* 너무 작은 화면 방지 */
  overflow:hidden;
  color:#fff;
}

/* owl item 높이도 100vh */
.crp-hero--vh .hero-slide{
  height:100vh;
  min-height: 640px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* 어두운 오버레이 */
.crp-hero--vh .hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.62) 100%);
}

/* 내용 위치 */
.crp-hero--vh .hero-inner{
  position:relative;
  z-index:2;
  height:100vh;
  min-height: 640px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding-top: 80px; /* 헤더 absolute면 여유 */
}

.crp-hero__title{
  margin:0 0 18px;
  font-size:52px;
  font-weight:1000;
  line-height:1.18;
  letter-spacing:-1.2px;
}

.crp-hero__desc{
  margin:0;
  font-size:18px;
  line-height:1.8;
  color: rgba(255,255,255,.72);
  max-width: 640px;
}

/* ===== 텍스트 아래 미니 로딩바 ===== */
.crp-heroMini{
  margin-top: 22px;           /* 텍스트 아래 간격 */
  display:flex;
  align-items:center;
  gap:12px;
}

.crp-heroMini__num{
  font-weight:900;
  opacity:.9;
  font-size:14px;
}

.crp-heroMini__progress{
  width: 180px;               /* ✅ 작게 */
  height: 2px;
  background: rgba(255,255,255,.25);
  position:relative;
  overflow:hidden;
  border-radius:999px;
}

.crp-heroMini__progress .bar{
  position:absolute;
  left:0; top:0;
  height:100%;
  width:0%;
  background: var(--crp-accent, #6CFF2B);
}

/* 로딩 애니메이션(슬라이드 시간과 맞춤) */
.crp-heroMini.loading .bar{
  animation: heroLoading 5s linear forwards;
}
@keyframes heroLoading{
  from{ width:0%; }
  to{ width:100%; }
}

.crp-heroMini__pause{
  width:30px;
  height:30px;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-weight:900;
  line-height:1;
}

/* hero bottom fade (도트/이미지 경계 부드럽게) */
.crp-hero--vh::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 140px; /* 100~180 사이 조절 */
  z-index: 6; /* dots보다 위로 */
  pointer-events:none;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,1) 100%
  );
}

/* 하단 도트 패턴(선택) */
.crp-hero__dots{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 170px;
  z-index:3;
  background: radial-gradient(circle, rgba(255,255,255,.22) 1px, transparent 2px) 0 0/10px 10px;
  opacity:.82;          /* 기존 .35면 줄이기 */
  height: 130px;        /* 너무 크면 줄이기 */
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* sections */
.crp-section{ padding:90px 0; }

/* ===== Big Features (세로형: 이미지 위 / 텍스트 아래 / 가운데 정렬) ===== */
.crp-featureBig{
  display:flex;                 /* grid -> flex */
  flex-direction:column;        /* 세로 스택 */
  align-items:center;           /* 가로 가운데 */
  text-align:center;            /* 텍스트 가운데 */
  gap:18px;
  padding:34px 0;               /* 섹션 간격 좀 여유 */
}

.crp-featureBig__img{
  width:min(560px, 92%);        /* PC에서도 너무 작지 않게 */
  max-width:560px;
  margin:0 auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.35));
}

.crp-featureBig__text{
  max-width:680px;              /* 문장 줄 길이 제한 */
}

.crp-featureBig__text h2{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.25;
}

.crp-featureBig__text p{
  margin:0;
  color:var(--crp-muted);
  line-height:1.7;
}

/* headline */
.crp-headline{
  margin-top:28px;
  padding:0;              /* 박스 느낌 제거 */
  background:none;
  box-shadow:none;
  border-radius:0;
  text-align:center;
}
.crp-headline h3{ margin:0 0 14px; font-size:40px; line-height:1.35; }
/* ===== Badge Buttons (직사각형 버튼) ===== */
.crp-badges{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;          /* 모바일에서 줄바꿈 */
}

/* 버튼 */
.crp-badge{
  display:inline-flex;     /* 아이콘+텍스트 한 줄 */
  align-items:center;
  gap:8px;
  padding:12px 16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:var(--crp-text);
  font-weight:800;
  font-size:14px;
  line-height:1;           /* 세로 정렬 깔끔 */
  white-space:nowrap;      /* 한 줄 유지 */
}

/* 아이콘 크기: 텍스트보다 크지 않게 */
.crp-badge img{
  width:16px;
  height:16px;
  object-fit:contain;
  flex:0 0 auto;
  opacity:.95;
}

/* ===== CTA Box (상단 큰 박스) ===== */
.crp-ctaBox{
  position:relative;
  overflow:visible; /* 이미지가 박스 밖으로 나가도록 */
  display:grid;
  grid-template-columns: 1fr 420px; /* 오른쪽 이미지 영역 고정 */
  gap:0;
  padding:0; /* 내부 여백은 text/media에서 조절 */
  border-radius: var(--crp-radius);
  background: var(--crp-panel);
  box-shadow: var(--crp-shadow);
  min-height: 280px;
}

/* 왼쪽 텍스트 영역: 가운데 정렬(치우침 해결) */
.crp-ctaBox__text{
  padding: 30px 30px;          /* 여백 */
  display:flex;
  flex-direction:column;
  justify-content:center;       /* 세로 중앙 */
  align-items:center;           /* 가로 중앙 */
  text-align:center;
}

/* 오른쪽 이미지 영역 */
.crp-ctaBox__media{
  position:relative;
}

/* 사람 이미지: PC에서 크게 + 살짝 튀어나오게 */
.crp-ctaBox__media img{
  position:absolute;
  right: 28px;
  bottom: 0;
  width: 300px;          /* 크기 조절 */
  max-width: none;
  height: auto;
  transform: translateY(-18px); /* 위로 살짝 */
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
  pointer-events:none;
}

/* 텍스트/버튼 스타일(기존 유지 가능) */
.crp-ctaBox__kicker{ margin:0 0 10px; color:var(--crp-muted); font-weight:800; }
.crp-ctaBox__title{ margin:0 0 18px; font-size:18px; }

/* CTA 버튼 영역 */
.crp-ctaBox__actions{
  display:flex;
  flex-direction:column;   /* 세로 정렬 */
  align-items:center;
  gap:12px;
  margin-top:10px;
}

/* ===== 계좌 개설하기 버튼 (그라데이션) ===== */
.crp-btn-gradient{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:180px;
  height:40px;
  border-radius:5px;

  font-size:16px;
  font-weight:900;
  color:#111;

  background: linear-gradient(90deg,#ffd84d,#7CFF00);
  box-shadow:
    0 10px 25px rgba(124,255,0,.25),
    inset 0 1px 0 rgba(255,255,255,.4);

  transition:all .25s ease;
}

/* hover 효과 */
.crp-btn-gradient:hover{
  transform:translateY(-2px);
  box-shadow:
    0 16px 30px rgba(124,255,0,.35),
    inset 0 1px 0 rgba(255,255,255,.4);
}

/* ===== 거래 체험하기 텍스트 링크 ===== */
.crp-link{
  color:#7CFF00;
  font-size:15px;
  font-weight:700;
  letter-spacing:-0.3px;
  transition:all .2s;
}

.crp-link:hover{
  opacity:.7;
  transform:translateX(3px);
}

/* ===== Cards Grid (PC 2열, 모바일 1열 유지) ===== */
.crp-cardGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  margin-top:20px;
}

/* 카드: 세로형(텍스트 위 / 이미지 아래) */
.crp-card{
  position:relative;
  overflow:hidden;
  border-radius: var(--crp-radius);
  background: var(--crp-panel2);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--crp-shadow);
  padding: 26px 22px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

/* 텍스트는 상단 */
.crp-card__body{
  max-width: 90%;
}

.crp-card__title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
}

.crp-card__desc{
  margin:0;
  color:var(--crp-muted);
  line-height:1.6;
}

/* 이미지: 아래쪽, 가운데 정렬, 박스에 맞는 크기 */
.crp-card__img{
  position:static;       /* absolute 제거 */
  width: min(200px, 70%);
  height:auto;
  margin-top: 22px;      /* 텍스트와 간격 */
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.35));
}

/* ===== Bottom CTA (배경 이미지 적용) ===== */
.crp-bottomCta{
  position: relative;
  padding:120px 0 160px;
  text-align:center;
  overflow:hidden;

  background:#000 url("../img/cryptonika/bg.jpg") no-repeat center 60%;
  background-size:1600px auto;
}

/* 어두운 오버레이(가독성) */
.crp-bottomCta::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,.35), rgba(0,0,0,.82) 70%);
  z-index:0;
}

/* 내용은 오버레이 위로 */
.crp-bottomCta__inner{
  position: relative;
  z-index:1;
}

/* 문구/타이틀 */
.crp-bottomCta__kicker{
  margin:0 0 10px;
  color: rgba(232,237,243,.85);
  font-weight:900;
  font-size: 40px;  
}
.crp-bottomCta__title{
  margin:0 0 20px;
  font-size: 40px;
  line-height: 1.25;
}

/* 로고 크기 */
.crp-bottomCta__logo{
  width: min(620px, 92%);
  margin: 0 auto 22px;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.55));
}
.crp-bottomCta__logo img{
  width:100%;
  height:auto;
}

/* responsive */
@media (max-width:860px){
.crp-brand img{
	width:120px;
	height:20px;
}
.crp-hbtn--dark_t{
	display:none;
}
.crp-hero--vh{ min-height: 560px; }
  .crp-hero--vh .hero-slide,
  .crp-hero--vh .hero-inner{ min-height: 560px; }

  .crp-hero__title{ font-size:34px; }
  .crp-hero__desc{ font-size:15px; }

  .crp-heroMini__progress{ width: 140px; } /* 모바일은 더 작게 */
  
  .crp-section{ padding:20px 0; }
  
  .crp-featureBig__img{
    width:min(420px, 92%);
    max-width:420px;
  }
  
  .crp-featureBig__text h2{
    font-size:24px;
  }

  .crp-ctaBox{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .crp-ctaBox__text{
    padding: 26px 18px 10px;
  }

  .crp-ctaBox__media{
    height:auto;
    padding: 0 18px 18px;
  }

  .crp-ctaBox__media img{
    position:static;      /* 모바일은 박스 안으로 */
    transform:none;
    width: min(200px, 80%);
    margin: 0 auto;
  }

  .crp-cardGrid{ grid-template-columns:1fr; }
  .crp-card{ min-height: 320px; }
  .crp-card__img{ width: min(220px, 70%); }
  
  .crp-headline h3{ font-size:20px; }  
  
  .crp-bottomCta{
    padding:80px 0 90px;
    background-size:900px auto;
  }
  .crp-bottomCta__kicker{
    font-size: 24px;  
  }
  .crp-bottomCta__title{
    font-size: 24px;
  }
  .crp-bottomCta__logo{
    width: min(520px, 92%);
  }
}

@media (max-width:480px){
  .crp-container{ width:min(1120px, calc(100% - 28px)); }
  .crp-containers{ width:min(1120px, calc(100% - 28px)); }  
  .crp-headline h3{ font-size:20px; }
  
  .crp-badges{ gap:10px; }
  .crp-badge{
    padding:12px 14px;
    font-size:13px;
  }
  .crp-badge img{
    width:15px;
    height:15px;
  }
}


/* ===== Footer ===== */
.crp-footer{
  background: #0f1318;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 54px 0;
}

/* PC: 2열 + copy는 3번째 행(왼쪽 아래) */
.crp-footer__inner{
  display:grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 18px;
  align-items:start;
}

/* LEFT/RIGHT 배치 */
.crp-footer__left{ grid-column:1; grid-row:1; }
.crp-footer__right{ grid-column:2; grid-row:1; }

/* copy: PC에서 왼쪽 아래 */
.crp-footer__copy{
  grid-column: 1 / 2;
  grid-row: 2;
  margin: 0;
  color: rgba(232,237,243,.55);
  font-size: 13px;
}


/* links */
.crp-footer__links{
  margin-top: 18px;
  display:flex;
  gap: 34px;
  flex-wrap:wrap;
}
.crp-footer__links a{
  color: rgba(232,237,243,.9);
  font-weight: 800;
  font-size: 14px;
}
.crp-footer__links a:hover{ opacity:.75; }

/* info */
.crp-footer__info{
  margin: 22px 0 0;
  color: rgba(232,237,243,.85);
}
.crp-footer__info .row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  margin: 10px 0;
  line-height: 1.65;
  font-size: 14px;
}
.crp-footer__info dt{
  min-width: 64px;
  font-weight: 900;
  color: rgba(232,237,243,.95);
}
.crp-footer__info dd{
  margin:0;
  color: rgba(232,237,243,.75);
}
.crp-footer__info .dt-inline{ min-width:auto; margin-left:18px; }
.crp-footer__info .dd-inline{ margin-right:10px; }

/* right (CS) */
.crp-footer__right{
  text-align:left;
  padding-top: 6px;
}
.crp-footer__cs-label{
  margin:0 0 10px;
  color: rgba(232,237,243,.8);
  font-weight: 900;
}
.crp-footer__cs-tel{
  margin:0 0 8px;
  font-size: 44px;
  font-weight: 1000;
  letter-spacing: -1px;
  color: #ffffff;
}
.crp-footer__cs-time{
  margin:0;
  color: rgba(232,237,243,.75);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Mobile ===== */
@media (max-width: 860px){
  .crp-footer{ padding: 34px 0; }

  /* 모바일: 1열 플렉스 */
  .crp-footer__inner{
    display:flex;
    flex-direction:column;
    gap: 18px;
  }

  /* 모바일: 고객센터 작게 */
  .crp-footer__right{ padding-top: 4px; }
  .crp-footer__cs-tel{
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 4px;
    color: rgba(232,237,243,.9);
  }
  .crp-footer__cs-label{
    display:inline-block;
    margin-right: 10px;
    font-size: 14px;
  }
  .crp-footer__cs-time{
    font-size: 13px;
    color: rgba(232,237,243,.65);
  }

  /* 모바일: 링크 간격 */
  .crp-footer__links{ gap: 18px; }

  /* 모바일: 정보 글자 조금 줄이기 */
  .crp-footer__info .row{
    margin: 8px 0;
    font-size: 13px;
  }
  .crp-footer__info dt{ min-width: 56px; }

  /* ★ copy는 무조건 맨 아래 */
  .crp-footer__copy{
    order: 999;
    margin-top: 6px;
  }
}

/* ===== Auth Modal ===== */
.crp-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display:none;

  /* ✅ 패널을 항상 화면 안 중앙에 */
  align-items:center;
  justify-content:center;
  padding: 16px;
}
.crp-modal.is-open{ display:flex; }

.crp-modal__dim{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
}

/* ✅ 패널: flex로 만들고 iframe이 남은 높이를 먹게 */
.crp-modal__panel{
  position: relative;
  width: 640px;
  max-width: 100%;
  background: #0f1318;
  border-radius: 22px;
  box-shadow: 0 30px 120px rgba(0,0,0,.7);
  overflow: hidden;
  z-index: 1;

  display:flex;
  flex-direction: column;
}

/* ✅ 로그인/회원가입 높이 고정 */
.crp-modal__panel.is-login{
  height: 610px;
  max-height: calc(100vh - 32px);
}
.crp-modal__panel.is-join{
  height: calc(100vh - 32px);   /* 화면에 꽉 차게 */
  max-height: calc(100vh - 32px);
}

/* 닫기버튼 */
.crp-modal__close{
  position:absolute;
  right:14px;
  top:10px;
  z-index: 3;
  width:40px;
  height:40px;
  border-radius:12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

/* ✅ 여기 중요: flex 아이템 스크롤을 위해 min-height:0 필수 */
.crp-modal__frame{
  flex: 1;
  min-height: 0;     /* ⭐ 이거 없으면 아래 잘림 현상 생김 */
  width: 100%;
  border: 0;
  background: transparent;
}

/* 모바일 */
@media (max-width: 860px){
  .crp-modal{ padding: 12px; }
  .crp-modal__panel{ width: 92vw; border-radius: 18px; }
  .crp-modal__panel.is-login{ height: min(560px, calc(100vh - 24px)); }
  .crp-modal__panel.is-join{  height: calc(100vh - 24px); }
}

/* ===== Auth Page: 스크롤바 숨김(iframe 내부에서 스크롤바 안 보이게) ===== */
html.crp-auth, body.crp-auth{
  overflow-y: auto;
  scrollbar-width: none;
}
html.crp-auth::-webkit-scrollbar,
body.crp-auth::-webkit-scrollbar{
  width: 0;
  height: 0;
}

/* ===== Auth UI 공용 ===== */
.crp-authBox{
  width: min(720px, 94%);
  margin: 0 auto;
  padding: 26px 10px 18px;
  color:#fff;
}

/* 탭 */
.crp-loginTabs{
  width: min(520px, 100%);
  margin: 0 auto 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 8px;
  display:flex;
  gap:10px;
}
.crp-loginTab{
  flex:1;
  height: 52px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 18px;
  color: rgba(255,255,255,.55);
  text-decoration:none;
}
.crp-loginTab.is-active{
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  color:#fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

/* 라벨 */
.crp-label{
  display:block;
  margin: 18px 0 10px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing:-.5px;
}

/* 입력/셀렉트 */
.crp-field{ position:relative; }
.crp-input{
  width:100%;
  height: 78px;
  padding: 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-size: 18px;
  outline:none;
}
.crp-input::placeholder{ color: rgba(255,255,255,.45); }
.crp-input:focus{
  border-color: rgba(150,255,80,.45);
  box-shadow: 0 0 0 4px rgba(140,255,90,.08);
}

/* ===== select 기본 ===== */
.crp-select{
  width:100%;
  height:60px;
  padding:0 18px;
  padding-right:44px;

  background: #1a1f26;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;

  color:#e8edf3;              /* 선택 후 텍스트 색 */
  font-size:15px;
  font-weight:600;

  outline:none;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  transition:.25s;
}

/* hover */
.crp-select:hover{
  border-color: rgba(130,255,60,.45);
}

/* focus */
.crp-select:focus{
  border-color:#7cff3a;
  box-shadow:0 0 0 2px rgba(124,255,58,.15);
}

/* ===== 화살표 커스텀 ===== */
.crp-select{
  background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:14px;
}

.crp-select option[value=""]{
  color:#8b95a1;
}


/* ===== option 스타일 ===== */
.crp-select option{
  background:#12161c;
  color:#e8edf3;
}

/* 선택된 option */
.crp-select option:checked{
  background:#7cff3a;
  color:#000;
}

/* disabled */
.crp-select:disabled{
  opacity:.5;
}


/* row */
.crp-row{
  display:flex;
  gap: 14px;
  align-items:center;
}
.crp-row > .crp-field{ flex:1; }
.crp-dash{ color: rgba(255,255,255,.45); font-weight:900; }

/* 작은 검정 버튼 (중복검사/우편번호 등) */
.crp-btnDark{
  height: 78px;
  padding: 0 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight: 900;
  cursor:pointer;
  white-space:nowrap;
}
.crp-btnDark--sm{ width: 140px; }

/* 체크박스 */
.crp-check{ display:flex; align-items:center; gap:12px; cursor:pointer; }
.crp-check input{ display:none; }
.crp-check__box{
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  position:relative;
}
.crp-check input:checked + .crp-check__box::after{
  content:"";
  position:absolute;
  left: 6px; top: 3px;
  width: 7px; height: 12px;
  border-right: 2px solid rgba(120,255,60,.95);
  border-bottom: 2px solid rgba(120,255,60,.95);
  transform: rotate(45deg);
}
.crp-check__txt{ color: rgba(255,255,255,.75); font-size: 16px; }

/* 약관 줄 */
.crp-agree{
  margin: 18px 0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.crp-agree__arrow{
  width: 34px; height: 34px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 10px;
  color: rgba(255,255,255,.55);
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

/* 큰 그라데이션 버튼 */
.crp-authBtn{
  width:100%;
  height: 96px;
  border: 0;
  border-radius: 20px;
  cursor:pointer;
  font-size: 22px;
  font-weight: 1000;
  color: #121212;
  background: linear-gradient(90deg, #FFD84A 0%, #8BFF2A 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* 하단 */
.crp-authHelp{
  display:block;
  text-align:center;
  margin: 22px 0 0;
  color: rgba(255,255,255,.55);
  text-decoration:none;
  font-size: 15px;
}
.crp-authBrand{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  opacity:.95;
}
.crp-authBrand img{ height:26px; }

/* 모바일 */
@media (max-width:860px){
  .crp-label{ font-size:20px; }
  .crp-input, .crp-select, .crp-btnDark{ height: 72px; border-radius: 20px; font-size: 16px; }
  .crp-btnDark--sm{ width: 122px; }
  .crp-authBtn{ height: 88px; font-size: 20px; }
  .crp-loginTab{ height: 48px; font-size: 16px; }
}

.bellWrap{ position:relative; display:inline-block; }

.bellBtn{
  position:relative;
  width:40px;height:40px;
  border:0;background:transparent;color:#fff;
  cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
}

.bellBadge{
  position:absolute;
  top:6px; right:6px;
  width:10px; height:10px;
  border-radius:999px;
  background:#2EE59D;
  box-shadow:0 0 0 2px rgba(0,0,0,.35);
  display:none;
}
.bellBtn.has-badge .bellBadge{ display:block; }

/* 팝오버 */
.bellPop{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:340px;
  z-index:9999;
  display:none;
}
.bellPop.is-open{ display:block; }

.bellPop__inner{
  background:#fff;
  color:#111;
  border-radius:12px;
  padding:14px;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
  position:relative;
}
.bellPop__inner:before{
  content:"";
  position:absolute;
  top:-8px; right:18px;
  width:16px; height:16px;
  background:#fff;
  transform:rotate(45deg);
}

.bellPop__title{ font-weight:800; margin-bottom:10px; }

.bellPop__list{ display:flex; flex-direction:column; gap:8px; margin-bottom:10px; }
.bellPop__item{
  display:flex; align-items:center; gap:8px;
  padding:10px;
  border-radius:10px;
  text-decoration:none;
  color:#111;
  background:rgba(0,0,0,.04);
}
.bellPop__item:hover{ background:rgba(0,0,0,.07); }

.bellPop__tag{
  font-size:12px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(0,120,255,.12);
  color:#0a66ff;
  flex:0 0 auto;
}
.bellPop__tag.is-qa{ background:rgba(255,120,0,.12); color:#d36b00; }

.bellPop__txt{
  font-weight:700;
  flex:1 1 auto;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.bellPop__time{
  font-size:12px;
  color:#666;
  flex:0 0 auto;
}

.bellPop__footer{ font-size:13px; margin-top:10px; }
.bellPop__link{ font-weight:800; color:#0a66ff; text-decoration:none; }
.bellPop__sep{ margin:0 8px; color:#aaa; }
.bellPop__empty{ font-weight:800; color:#666; }


/* ===== 메인(index) 헤더: 모바일에서는 gnb 숨기고 햄버거 표시 ===== */
.menuBtn--index{ display:none; }

@media (max-width: 860px){
  .crp-gnb{ display:none; }

  .menuBtn--index{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    margin-left:10px;

    border-radius:12px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(0,0,0,.35);
    color:#fff;
  }
}

/* 스크롤 잠금 */
.no-scroll{ overflow:hidden !important; }

/* overlay */
.overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
  z-index: 9998;
}
.overlay.show{ opacity:1; pointer-events:auto; }

.mobile-drawer{
  position:fixed;
  top:0; left:0;
  height:100vh;
  width: 66vw;
  max-width: 320px;
  min-width: 260px;

  /* 더 진한 배경 */
  background: linear-gradient(180deg, var(--drawer-bg), var(--drawer-bg2));

  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  transform: translateX(-102%);
  transition: transform .25s ease;
  z-index: 9999;
  display:flex;
  flex-direction:column;
}
.mobile-drawer.show{ transform: translateX(0); }

.drawer-hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 16px;
}
.drawer-hd .brand img{ height:20px; }

.drawer-close{
  width:36px;height:36px;
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.drawer-close i{ color:#fff; font-size:20px; opacity:.9; }

.drawer-nav{
  padding: 4px 0;
  display:flex;
  flex-direction:column;
  flex:1;
  overflow:auto;
}
.drawer-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 18px;
  color:#e7ecef;
  text-decoration:none;
  font-weight:800;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
}
.drawer-item:hover{ background: rgba(255,255,255,.03); }
.drawer-item.active{ color: var(--green); }

.drawer-item .chev{
  opacity:.9;
  transition: transform .2s ease, color .2s ease;
}
.drawer-item.open{
  color: var(--green);
}
.drawer-item.open .chev{
  transform: rotate(180deg);
  color: var(--green);
}

.drawer-submenu{ display:none; flex-direction:column; padding:0; }
.drawer-submenu.show{ display:flex; }

.drawer-subItem{
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration:none;
  border-top: 1px solid rgba(255,255,255,.06);
}
.drawer-subItem:hover{
  color:#fff;
  background: rgba(255,255,255,.03);
}

.drawer-footer{
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.drawer-logout{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 16px 18px;
  border-radius: 14px;
  border:0;
  background: transparent;
  color:#e7ecef;
  font-weight:900;
  cursor:pointer;
}
.drawer-logout i{ font-size:16px; opacity:.9; }