:root{
  --bg: #f1f4fa;
  --ink: #101725;
  --muted: #5b6475;
  --line: #d7dde8;
  --card: #ffffff;
  --primary: #0f4c81;
  --primary-strong: #0b3a63;
  --accent: #e7eef8;
  --ok: #147a4a;
  --danger: #c12828;
  --shadow: 0 14px 36px rgba(16, 23, 37, 0.08);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 0% 0%, #f8fbff 0%, #f1f4fa 52%, #eef2f8 100%);
  font-family: "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.site-bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(15, 76, 129, 0.09) 0%, rgba(15, 76, 129, 0) 48%),
    repeating-linear-gradient(90deg, rgba(15, 76, 129, 0.04) 0 1px, transparent 1px 34px);
  opacity: .6;
}

.wrap{
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 18px 70px;
}

.left-notice{
  position: fixed;
  left: 20px;
  top: 92px;
  width: 250px;
  z-index: 2;
  border: 1px solid #c8d7ea;
  border-radius: 14px;
  background: #f8fbff;
  box-shadow: 0 12px 24px rgba(16, 23, 37, 0.12);
  padding: 14px;
}

.left-notice h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.left-notice .ln-sub{
  margin: 8px 0;
  color: #1f446a;
  font-size: 13px;
  font-weight: 700;
}

.left-notice ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.left-notice li{
  font-size: 13px;
  color: #2a3b53;
}

.left-notice .ln-foot{
  margin: 10px 0 0;
  color: #0f355a;
  font-size: 12px;
  font-weight: 700;
}

.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.topbar-solid{
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(2px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.brand-column h1,
.brand h1{
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.logo-title{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark{
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #c8d6e7;
  box-shadow: 0 2px 8px rgba(13, 45, 76, 0.12);
}

.corp{
  margin: 0 0 2px;
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .07em;
}

.corp-sub{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 16px;
}

.hero > div,
.mini-panel,
.coop-intro,
.formCard,
.card,
.flow,
.footer,
.policy-strip{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero > div{
  padding: 20px;
}

.hero-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .06em;
}

.hero h2{
  margin: 8px 0 10px;
  line-height: 1.3;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.hero p{
  margin: 0;
  color: var(--muted);
}

.hero-tags{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-panel{
  padding: 18px;
}

.mini-panel h3{
  margin: 0 0 10px;
  font-size: 15px;
}

.mini-panel ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mini-panel li{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
}

.mini-panel li span{
  color: var(--muted);
  font-size: 13px;
}

.mini-panel li strong{
  text-align: right;
  font-size: 13px;
}

.coop-intro{
  margin-top: 14px;
  padding: 18px;
}

.coop-intro h2{
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.coop-intro h3{
  margin: 14px 0 8px;
  font-size: 16px;
}

.coop-intro p{
  margin: 0;
  color: #31445b;
  font-size: 14px;
}

.coop-intro ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
}

.coop-intro li{
  color: #2d4057;
  font-size: 14px;
}

.coop-intro .coop-strong{
  margin-top: 10px;
  color: #0f355a;
  font-weight: 800;
}

.policy-strip{
  margin-top: 14px;
  padding: 14px 16px;
}

.policy-strip p{
  margin: 4px 0;
  color: #24415f;
  font-size: 13px;
}

.section-head{
  margin: 20px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section-head h2{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.pill{
  font-size: 12px;
  color: #204568;
  border: 1px solid #b9cbe0;
  background: #eef5ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3,
.card h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  font-size: 12px;
  color: #35506e;
  border: 1px solid #ccdae9;
  background: #f7faff;
  padding: 5px 10px;
  border-radius: 999px;
}

.desc{
  color: var(--muted);
  font-size: 13px;
  margin: -2px 0 0;
}

.job-list{
  margin: 8px 0 0;
  padding-left: 18px;
  color: #27364b;
  font-size: 13px;
}

.job-list li{ margin-bottom: 5px; }

.cta{
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: background .15s ease, transform .05s ease;
}

.btn:active{ transform: translateY(1px); }

a.btn,
button.btn{
  background: var(--primary);
  color: white;
}

a.btn:hover,
button.btn:hover{
  background: var(--primary-strong);
}

.btn.secondary{
  background: #f9fbff;
  color: #16314d;
  border-color: #c9d8e8;
}

.btn.secondary:hover{ background: #eef4fb; }

.btn.ghost{
  background: transparent;
  color: #173252;
  border: 1px solid #c5d3e5;
}

.flow,
.footer{
  margin-top: 16px;
  padding: 16px;
}

.flow h2{
  margin: 0 0 10px;
  font-size: 18px;
}

.flow ol{
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: #243851;
}

.footer p{
  margin: 5px 0;
  color: #45556c;
  font-size: 13px;
}

.footer a,
.notice a{
  color: #0f4c81;
  font-weight: 700;
  text-decoration: underline;
}

.small-note{
  color: #63728a;
  font-size: 12px;
}

.mutelink{
  text-decoration: none;
  color: #4f6078;
  font-size: 13px;
}

.mutelink:hover{ color: #1c3658; }

/* apply page */
.formCard{ padding: 18px; }

.crumb{
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 16px;
}

.jobTitle{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.jobSub{
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}

form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label{
  font-size: 13px;
  font-weight: 700;
}

.req{
  margin-left: 6px;
  color: var(--danger);
  font-weight: 800;
}

input, textarea, select{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  font-size: 14px;
  background: #fff;
}

textarea{
  min-height: 104px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus{
  border-color: #7ba5cb;
  box-shadow: 0 0 0 4px rgba(15,76,129,0.12);
}

.span2{ grid-column: 1 / -1; }

.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px dashed #bfd0e3;
  border-radius: 12px;
  background: #f7faff;
}

.check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.check .small{
  color: #4c607b;
  font-size: 12px;
}

.actions{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  grid-column: 1 / -1;
  margin-top: 6px;
}

.notice{
  margin-top: 14px;
  background: #eef6ff;
  border: 1px solid #c9ddf3;
  color: #1f4b74;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
}

.error{
  color: var(--danger);
  font-size: 13px;
  margin-top: 10px;
}

.success{
  color: var(--ok);
  font-size: 14px;
  margin-top: 10px;
  font-weight: 800;
}

.resultBox{
  border: 1px solid #bfe0d0;
  background: #f4fff9;
  padding: 14px;
  border-radius: 12px;
  margin-top: 12px;
}

.kv{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 12px;
  margin-top: 8px;
}

.kv .k{
  color: var(--muted);
  font-size: 12px;
}

.kv .v{
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 1280px){
  .left-notice{ position: static; width: 100%; margin-bottom: 14px; }
}

@media (max-width: 940px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px){
  form{ grid-template-columns: 1fr; }
}

@media (max-width: 620px){
  .left-notice{
    display: none;
    /* position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: auto;
    width: auto;
    z-index: 30;
    max-height: 42vh;
    overflow: auto; */
  }
  .wrap{ padding-bottom: 280px; }
  .topbar{ flex-direction: column; align-items: flex-start; }
  .grid{ grid-template-columns: 1fr; }
  .cta{ flex-direction: column; }
  .kv{ grid-template-columns: 100px 1fr; }
}
