





/* 투자/퍼블리싱 제안 준비중 페이지 */

.proposal-section {
  width: 100%;
  background: #000;
  padding: 90px 20px 80px;
  box-sizing: border-box;
}


.proposal-inner {
  max-width: 1100px;
  margin: 0 auto;
    margin-top: 50px;

}

/* 상단 타이틀 */
.proposal-header {
  margin-bottom: 36px;
}

.section-label {
  text-align: left;
  display: block;
  color: #56d7e8;
  font-size: 15px;
  font-weight: 350;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.proposal-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  letter-spacing: -1px;
  margin-bottom: 18px;
  font-weight: 350;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* 제목 아래 민트 바 */
.proposal-title-line {
  display: block;
  width: 44px;
  height: 2px;
  background: #56d7e8;
  margin: 0 0 26px;
  box-shadow: 0 0 12px rgba(86, 215, 232, 0.65);
}

.proposal-header p {
  text-align: left;
  color: rgba(154, 154, 154, 0.75);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.8;
  word-break: keep-all;
  margin: 0;
}

/* 메인 영역 */
.proposal-card {
  width: 100%;
  min-height: 420px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding-top: 90px;
  padding-bottom: 150px;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* 아이콘 */
.proposal-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(86, 215, 232, 0.35);
  background: rgba(86, 215, 232, 0.035);
  box-shadow:
    0 0 28px rgba(86, 215, 232, 0.16),
    inset 0 0 18px rgba(86, 215, 232, 0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 30px;
}

.proposal-icon span {
  width: 32px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  font-size: 18px;
  line-height: 11px;
  letter-spacing: 2px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 본문 */
.proposal-card h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 350;
  letter-spacing: -1px;
}

.proposal-card p {
  margin: 0;
  color: rgba(180, 180, 180, 0.72);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.85;
  word-break: keep-all;
}

.proposal-line {
  width: 74%;
  max-width: 720px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 34px 0 22px;
}

.proposal-sub {
  color: rgba(180, 180, 180, 0.62) !important;
}

/* 등장 애니메이션 */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 모바일 */
@media (max-width: 768px) {
  .proposal-section {
    padding: 90px 20px;
  }

  .proposal-header h2 {
    font-size: 34px;
  }

  .proposal-card {
    min-height: 360px;
    padding: 70px 20px;
  }

  .proposal-card h3 {
    font-size: 32px;
  }

  .proposal-line {
    width: 100%;
  }

  .proposal-header p br,
  .proposal-card p br {
    display: none;
  }
}
























/* 퍼블리싱 */
/* .proposal-section {
  padding: 80px 30px;
  background: #fff;
  color: #222;
}

.proposal-inner {
  max-width: 900px;
  margin: 0 auto;
}

.proposal-title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-align: left;
}

.proposal-red {
  color: #6ad9dc;
  font-size: 18px;
  margin-bottom: 14px;
  text-align: left;
}

.proposal-desc {
  font-size: 15px;
  margin-bottom: 32px;
  text-align: left;
  color: #555;
  line-height: 1.6;
}

.proposal-table {
  border-top: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #d8d8d8;
  min-height: 54px;
}

.form-label {
  background: #f7f7f7;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.form-label.required::before {
  content: "•";
  color: #009eb3;
  margin-right: 4px;
}

.form-field {
  padding: 10px 14px;
  display: flex;
  align-items: left;
}

.form-field input[type="text"] {
  width: 100%;
  height: 38px;
  border: 1px solid #d0d0d0;
  padding: 0 12px;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 14px;
}

.form-field textarea {
  width: 100%;
  height: 140px;
  border: 1px solid #d0d0d0;
  resize: vertical;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.short input[type="text"] {
  max-width: 200px;
}

.email-field {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.email-field input {
  max-width: 200px;
}

.email-field p {
  font-size: 12px;
  color: #666;
}

.file-field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.file-field input[type="text"] {
  flex: 1;
}

.file-field input[type="file"] {
  display: none;
}

.file-field label {
  width: 90px;
  height: 38px;
  border: 1px solid #cfcfcf;
  background: #f5f5f5;
  font-size: 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.file-field label:hover {
  background: #ececec;
}

.privacy-section {
  margin-top: 40px;
}

.privacy-section h3 {
  color: #00bcd4;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.privacy-box {
  border: 1px solid #d0d0d0;
  padding: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  border-radius: 10px;
  background: #fafafa;
}

.privacy-box p {
  margin: 6px 0;
}

.agree-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-size: 15px;
}

.agree-line input {
  width: 16px;
  height: 16px;
}

.captcha-box {
  width: 100%;
  max-width: 380px;
  height: 92px;
  border: 1px solid #d8d8d8;
  background: #fafafa;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
}

.captcha-box label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
}

.captcha-box input {
  width: 34px;
  height: 34px;
}

.captcha-logo {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 12px;
  color: #777;
}

.submit-wrap {
  text-align: right;
  margin-top: 50px;
}

.submit-wrap button {
  width: 140px;
  height: 48px;
  background: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.submit-wrap button:hover {
  background: #00bcd4;
  transform: translateY(-1px);
}

/* 반응형 */
/* @media (max-width: 768px) {
  .proposal-section {
    padding: 60px 20px;
  }

  .proposal-title {
    font-size: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-label {
    border-bottom: 1px solid #e5e5e5;
  }

  .submit-wrap {
    text-align: center;
  }

  .submit-wrap button {
    width: 100%;
    max-width: 300px;
  }
} * */