:root {
    --bg: #f4f7f7;
    --surface: #ffffff;
    --surface-2: #eef5f3;
    --line: #d6e1de;
    --text: #12211e;
    --muted: #63726e;
    --navy: #101c2a;
    --green-950: #073f37;
    --green-900: #085648;
    --green-800: #0a6655;
    --green-700: #0d7c68;
    --mint: #38d6b1;
    --cyan: #25b9ff;
    --blue: #3478ff;
    --violet: #7957ff;
    --magenta: #c14cff;
    --warning: #f6b63f;
    --danger: #e04a55;
    --shadow-sm: 0 8px 24px rgba(13, 45, 38, 0.08);
    --shadow-md: 0 18px 42px rgba(5, 39, 32, 0.16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

button, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

.job-card-top {
    gap: 10px;
}

.job-card-meta {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.job-card-regions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 4px;
    width: 100%;
    min-height: 23px;
    align-items: center;
    overflow: hidden;
    line-height: 1;
    margin-bottom:3px;
}

.job-card-company {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 4px;
    line-height: 1.1;
}

.job-card-regions .badge {
    line-height: 1;
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
}

.job-card-period {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
}

.main-application-card .card-body {
    min-height: 0 !important;
    padding-top: 14px;
    padding-bottom: 8px;
}

.main-application-card .job-card-top {
    margin-bottom: 4px;
}

.main-application-card h5 {
    line-height: 1.2 !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
}

.main-application-card .nowstate-badge {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
}

.main-application-card .nowstate-badge h2,
.main-application-card h4 {
    margin: 0;
    line-height: 1.12;
}

.main-application-card .nowstate-badge h2 {
    padding-top: 0.15rem !important;
    padding-bottom: 0.15rem !important;
}

.main-application-card .badge {
    line-height: 1.05;
}

.main-application-card .d-flex.w-100.justify-content-between.my-1 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-items: center;
}

.main-application-card .d-flex.w-100.justify-content-between.my-1 .badge {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
}

.main-recruit-card .card-body {
    /*height: 183px !important;*/
    /*min-height: 183px !important;*/
    padding-top: 14px;
    padding-bottom: 12px;
}

.premiumcard-body {
    min-height:194px;
}

.main-recruit-card .job-card-top {
    margin-bottom: 4px;
}

.main-recruit-card h5 {
    line-height: 1.2 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-recruit-logo {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    min-height:35px;
}

.main-recruit-logo img {
    width: auto;
    object-fit: contain;
}

.main-recruit-card .badge {
    line-height: 1.05;
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
}

.main-recruit-card > .card-body > .badge,
.main-recruit-card > .card-body > .h_30 {
    margin-top: auto;
}

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

.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-h);
    border-bottom: 1px solid rgba(11, 85, 72, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1320px, calc(100% - 40px));
    min-height: var(--header-h);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 21px;
}

.brand-mark {
    position: relative;
    width: 42px;
    height: 32px;
    display: grid;
    place-items: center;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 4px 1px;
    border-radius: 6px;
    transform: skewX(-25deg);
}
.brand-mark::before { background: linear-gradient(135deg, #0b9b82, #145b95); }
.brand-mark::after { inset: 9px 9px 3px 13px; background: linear-gradient(135deg, #ffb51a, #f47e1b); }
.brand-mark span {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 12px;
    color: #22302d;
    font-weight: 800;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover,
.nav-link:focus-visible {
    outline: none;
    color: var(--green-700);
    background: #e9f7f3;
    transform: translateY(-1px);
}
.nav-link.is-ai::after {
    content: "AI";
    position: absolute;
    top: 3px;
    right: 4px;
    padding: 1px 5px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    font-size: 9px;
    line-height: 1.4;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(91, 91, 255, .24);
}

.tiny-ai-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.company-auth {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #9ecdc1;
    border-radius: 999px;
    color: #0d6b58;
    background: #eefaf7;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.company-auth:hover,
.company-auth:focus-visible {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 102, 85, .16);
}

.profile {
    position: relative;
}

.profile-trigger {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #0d6b58;
    font-weight: 900;
}
.profile-trigger:hover,
.profile-trigger:focus-visible {
    outline: none;
    background: #eff8f6;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #0aa283, #2964d8);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
}

.profile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 230px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}
.profile:hover .profile-menu,
.profile:focus-within .profile-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.profile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-weight: 700;
    color: #33423e;
}
.profile-menu a:hover,
.profile-menu a:focus-visible {
    outline: none;
    color: var(--green-700);
    background: #eff8f6;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    max-height: 500px;
    background:
            radial-gradient(circle at 12% 18%, rgba(56, 214, 177, .17), transparent 25%),
            radial-gradient(circle at 78% 24%, rgba(121, 87, 255, .17), transparent 28%),
            linear-gradient(135deg, #074f43 0%, #0a6c58 54%, #06443b 100%);
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
            linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -120px -10%;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(44, 255, 206, .13), transparent 65%);
    filter: blur(10px);
}

.neural-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.neural-particles i {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7fffe4;
    box-shadow: 0 0 18px rgba(127, 255, 228, .8);
    animation: drift var(--duration, 1s) ease-in-out infinite alternate;
    opacity: var(--opacity, .45);
}
.neural-particles i::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: var(--line-l, 58px);
    height: 1px;
    transform: rotate(var(--line-r, 18deg));
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(127,255,228,.5), transparent);
}
.neural-particles i:nth-child(1) { left: 7%; top: 15%; --duration: 7s; --line-r: 18deg; }
.neural-particles i:nth-child(2) { left: 24%; top: 64%; --duration: 10s; --line-r: -30deg; --opacity: .25; }
.neural-particles i:nth-child(3) { left: 46%; top: 20%; --duration: 9s; --line-r: 35deg; --line-l: 86px; }
.neural-particles i:nth-child(4) { left: 69%; top: 73%; --duration: 8s; --line-r: -18deg; --opacity: .35; }
.neural-particles i:nth-child(5) { left: 88%; top: 20%; --duration: 11s; --line-r: 130deg; --line-l: 72px; }
.neural-particles i:nth-child(6) { left: 79%; top: 46%; --duration: 6s; --line-r: 12deg; --opacity: .2; }

@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(.8); }
    to { transform: translate3d(18px, -14px, 0) scale(1.15); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 40px));
    min-height: 450px;
    margin: 0 auto;
    padding: 42px 0 115px;
}

.hero-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c9fff0;
    font-size: 15px;
    font-weight: 800;
}
.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7fffe4;
    box-shadow: 0 0 0 6px rgba(127, 255, 228, .12), 0 0 18px rgba(127,255,228,.7);
}

.hero-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mode-guide,
.mode-reset {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    color: white;
    background: rgba(255,255,255,.08);
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}
.mode-guide {
    padding: 0 16px;
    border: 1px solid rgba(127,255,228,.48);
    border-radius: 999px;
    color: #073f37;
    background: #b9ffed;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0, 28, 23, .15);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.mode-guide:hover,
.mode-guide:focus-visible {
    outline: none;
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 12px 26px rgba(0, 28, 23, .22);
}
.mode-reset:hover,
.mode-reset:focus-visible {
    outline: none;
    background: rgba(255,255,255,.17);
    transform: translateY(-1px);
}

.hero-content {
    min-height: 245px;
    animation: contentIn .35s ease both;
}
@keyframes contentIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.persona-card {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    min-height: 208px;
    padding: 25px 18px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 24px;
    color: white;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .18s ease;
    overflow: hidden;
}
.persona-card::before {
    content: "";
    position: absolute;
    inset: -80% auto auto -30%;
    width: 90%;
    height: 220%;
    transform: rotate(25deg) translateX(-150%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: transform .6s ease;
}
.persona-card:hover::before { transform: rotate(25deg) translateX(220%); }
.persona-card:hover,
.persona-card:focus-within {
    border-color: rgba(127,255,228,.75);
    background: linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
    box-shadow: 0 20px 48px rgba(0, 28, 23, .28), inset 0 1px 0 rgba(255,255,255,.25);
}

.persona-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    transform: translateZ(24px);
    min-height:76px;
}

.ai-orb {
    --orb-size: 65px;
    position: relative;
    width: var(--orb-size);
    height: var(--orb-size);
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 28%, #ffffff 0 9%, #dffcff 18%, #99f2e4 38%, #3677ff 66%, #713cff 100%);
    box-shadow:
            0 0 0 6px rgba(255,255,255,.10),
            0 0 28px rgba(93, 255, 220, .52),
            inset 0 0 20px rgba(255,255,255,.72);
    isolation: isolate;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}

.persona-card:hover .ai-orb,
.role-shortcut:hover .ai-orb,
.action-step:hover .ai-orb {
    transform: rotate(8deg) scale(1.08);
    box-shadow:
            0 0 0 8px rgba(255,255,255,.12),
            0 0 42px rgba(93, 255, 220, .72),
            inset 0 0 24px rgba(255,255,255,.85);
}
.ai-orb::before,
.ai-orb::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(142, 255, 232, .55);
    border-radius: 50%;
    animation: orbit 1s linear infinite;
}
.ai-orb::after {
    inset: -14px;
    border-style: dashed;
    border-color: rgba(137, 126, 255, .55);
    animation-direction: reverse;
    animation-duration: 3s;
}
@keyframes orbit { to { transform: rotate(360deg); } }

.ai-core-svg {
    width: 58%;
    height: 58%;
    filter: drop-shadow(0 4px 8px rgba(37, 22, 116, .35));
    z-index: 2;
}
.ai-core-svg .node { animation: nodePulse 1.8s ease-in-out infinite alternate; }
.ai-core-svg .node:nth-child(2) { animation-delay: .25s; }
.ai-core-svg .node:nth-child(3) { animation-delay: .5s; }
@keyframes nodePulse { from { opacity: .55; } to { opacity: 1; } }

.persona-copy h2,
.persona-copy h3 {
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.25;
}
.persona-copy h3 { font-size: 18px; }
.persona-copy p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
}

.persona-action {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(255,255,255,.33);
    border-radius: 15px;
    color: white;
    background: rgba(0,0,0,.12);
    font-size: 16px;
    font-weight: 900;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    transform: translateZ(18px);
}
.persona-action:hover,
.persona-action:focus-visible {
    outline: none;
    border-color: #8affe6;
    background: rgba(255,255,255,.14);
    transform: translateZ(18px) translateY(-2px);
}
.persona-action span:last-child {
    font-size: 22px;
    transition: transform .2s ease;
}
.persona-action:hover span:last-child { transform: translateX(4px); }

.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 32px;
    align-items: start;
}

.guide-main {display: grid;grid-template-columns: 104px minmax(0, 1fr);gap: 26px;align-items: start;}
.guide-main .ai-orb { --orb-size: 92px; margin-top: 6px; }

.guide-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.22;
    letter-spacing: -0.045em;
    text-wrap: balance;
}
.guide-subtitle {
    margin: 10px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    font-weight: 700;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
}
.step-list.single { grid-template-columns: minmax(0, 560px); }

.action-step {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px 8px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    color: var(--text);
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 28px rgba(0, 32, 27, .13);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    animation: stepIn .32s ease both;
    animation-delay: calc(var(--i, 0) * 55ms);
}
@keyframes stepIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.action-step:hover,
.action-step:focus-visible {
    outline: none;
    transform: translateY(-4px);
    border-color: #8ce5d1;
    box-shadow: 0 18px 36px rgba(0, 37, 31, .22);
}
.step-no {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: white;
    background: linear-gradient(135deg, #0eb38d, #3775ff);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 7px 14px rgba(43, 116, 221, .22);
}
.step-label {
    min-width: 0;
    flex: 1;
    color: #1b2926;
    font-size: 16px;
    font-weight: 900;
}
.ai-badge {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border-radius: 11px;
    color: white;
    background: linear-gradient(135deg, #28b8ff, #4d68ff 50%, #8e4cff);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 7px 16px rgba(77, 104, 255, .26);
    transform-origin: center;
}
.ai-badge:hover::before {
    animation: spin 0.8s linear 1 forwards;
    /*animation: sparkle 1.2s ease-in-out infinite alternate;*/
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.ai-badge::before {
    content: "✦";
    display: inline-block;
    transform-origin: center;
}




/*@keyframes sparkle { to { transform: scale(1.28) rotate(20deg); filter: brightness(1.25); } }*/

.role-shortcuts {
    display: grid;
    gap: 10px;
}
.role-shortcut {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 17px;
    color: white;
    background: rgba(255,255,255,.07);
    text-align: left;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.role-shortcut:hover,
.role-shortcut:focus-visible,
.role-shortcut.is-active {
    outline: none;
    transform: translateX(-5px);
    background: rgba(255,255,255,.15);
    border-color: rgba(127,255,228,.65);
}
.role-shortcut .ai-orb { --orb-size: 42px; }
.role-shortcut strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
}
.role-shortcut small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}
.role-shortcut .arrow {
    margin-left: auto;
    color: #9effe8;
    font-size: 20px;
}

.search-panel {
    position: relative;
    z-index: 20;
    width: min(1180px, calc(100% - 40px));
    margin: -74px auto 0;
    padding: 22px;
    border: 1px solid rgba(10, 102, 85, .12);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-md);
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(230px, .7fr) 124px;
    align-items: center;
    border: 2px solid #d2ddda;
    border-radius: 17px;
    background: white;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.search-form:focus-within {
    border-color: #22a88a;
    box-shadow: 0 0 0 4px rgba(34, 168, 138, .11);
}

.search-field {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 18px;
}
.search-field + .search-field { border-left: 1px solid #e4ece9; }
.search-field svg { width: 22px; height: 22px; color: #65736f; flex: 0 0 auto; }
.search-field input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    color: #1d2a27;
    background: transparent;
    font-weight: 700;
}
.search-field input::placeholder { color: #98a4a1; }
.search-submit {
    align-self: stretch;
    min-height: 60px;
    margin: 5px;
    border: 0;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, #0d7f69, #0a584c);
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(8, 95, 79, .22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.search-submit:hover,
.search-submit:focus-visible {
    outline: none;
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 12px 22px rgba(8, 95, 79, .30);
}

.content-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 80px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.section-head h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.04em;
}
.section-head p {
    margin: 5px 0 0;
    color: var(--muted);
    font-weight: 650;
}
.result-count {
    color: var(--green-700);
    font-weight: 900;
}

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

.job-card {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-sm);
    transform: perspective(950px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}
.job-card::after {
    content: "";
    position: absolute;
    inset: auto -70px -70px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,214,177,.13), transparent 70%);
    pointer-events: none;
}
.job-card:hover,
.job-card:focus-within {
    border-color: #78cdb9;
    box-shadow: 0 18px 40px rgba(12, 83, 68, .14);
}
.job-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    transform: translateZ(18px);
}
.company-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: var(--logo-bg, linear-gradient(135deg, #1e75ef, #7b4cff));
    box-shadow: 0 9px 18px rgba(47, 100, 206, .18);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: -0.03em;
}
.job-card-title { min-width: 0; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 8px;
    border-radius: 7px;
    color: #296f60;
    background: #e7f6f2;
    font-size: 12px;
    font-weight: 900;
}
.tag.blue { color: #2c5fa8; background: #e8f1ff; }
.tag.violet { color: #6741a8; background: #f0e9ff; }
.job-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.38;
    letter-spacing: -0.035em;
}
.job-card .job-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #ebf0ee;
    transform: translateZ(12px);
}
.company-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 900;
}
.company-name small { color: var(--muted); font-weight: 700; }
.ai-match {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 11px;
    border-radius: 10px;
    color: #3f48a6;
    background: linear-gradient(135deg, #eefbff, #f2edff);
    font-size: 12px;
    font-weight: 900;
}
.ai-match::before { content: "✦"; color: #6b5cff; }

.bookmark {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #dbe5e2;
    border-radius: 11px;
    color: #5f6e6a;
    background: rgba(255,255,255,.92);
    z-index: 3;
    transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
}
.bookmark:hover,
.bookmark:focus-visible {
    outline: none;
    color: #0b8a70;
    border-color: #9bd8ca;
    transform: translateY(-2px);
}
.bookmark[aria-pressed="true"] {
    color: white;
    border-color: #0b8a70;
    background: #0b8a70;
}

.empty-state {
    display: none;
    padding: 50px 20px;
    border: 1px dashed #b9cbc6;
    border-radius: 20px;
    color: var(--muted);
    background: white;
    text-align: center;
    font-weight: 800;
}
.empty-state.is-visible { display: block; }

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 200;
    min-width: 280px;
    max-width: calc(100% - 32px);
    padding: 14px 18px;
    border-radius: 14px;
    color: white;
    background: #102721;
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
    font-weight: 800;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, 16px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.footer {
    /*padding: 28px 20px;*/
    /*color: #212529 !important;*/
    background: #12201d;
    /*text-align: center;*/
    font-size: 14px;
}

@media (max-width: 1150px) {
    .main-nav { gap: 0; }
    .nav-link { padding-inline: 9px; font-size: 14px; }
    .header-actions .company-auth { display: none; }
    .guide-layout { grid-template-columns: minmax(0, 1fr) 270px; }
}

@media (max-width: 930px) {
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    .header-inner, .hero-inner, .content-wrap { width: min(100% - 24px, 1320px); }
    .brand { font-size: 17px; }
    .profile-trigger strong { display: none; }
    .hero { min-height: 414px;padding-top:0px; }
    .hero-inner { padding-bottom: 50px; }
    .guide-main { grid-template-columns: 1fr; }
    .guide-main .ai-orb { --orb-size: 76px; }
    .guide-title { font-size: 29px; }
    .step-list { grid-template-columns: 1fr; }
    .role-shortcuts { grid-template-columns: 1fr; }
    .search-panel { width: calc(100% - 24px); padding: 12px; }
    .section-head { align-items: start; flex-direction: column; }
    .job-card { padding: 18px; }
    .ai-match { display: none; }
}

#mainSearchForm {position: relative;top: -54px;height:1px;}
#mainSearchForm .topsearch.search-input {background:#FFFFFF !important;}


@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.ai-card {
    position: relative;
    border-radius: 24px;
    isolation: isolate;
}

/* 선명한 컬러 라인 */
.ai-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 26px;
    padding: 8px;

    background: conic-gradient(
            from var(--angle),
            #ff4545,
            #00ff99,
            #006aff,
            #ff0095,
            #ff4545
    );

    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    display: none;
}

/* 넓게 번지는 글로우 */
.ai-card::before {
    content: '';
    position: absolute;
    inset: -12px;
    z-index: -2;
    border-radius: 34px;

    background: conic-gradient(
            from var(--angle),
            #ff4545,
            #00ff99,
            #006aff,
            #ff0095,
            #ff4545
    );

    filter: blur(22px);
    opacity: 0.65;
    transform: scale(1.03);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    display: none;
}


@keyframes spin { to {--angle: 360deg;} }
.swiper {width: 100%;padding-top: 20px;padding-bottom: 50px;max-width:1430px;}
.swiper-slide {background-position: center;background-size: cover;width: 500px;height: fit-content !important;max-width: 100%;}
.swiper-slide img {display: block;width: 100%;height: 100%;object-fit: cover;}
.swiper-slide .card {}

#swiperContainer, #swiperContainer2{width: min(1320px, calc(100% - 40px));margin:0 auto;justify-content: space-between;margin-bottom:27px;}

.nowstate-badge {width:172px;border-radius: 50%;color:#FFFFFF;padding-top: 0.5rem !important;padding-bottom: 0.5rem !important;padding-right: 0.5rem !important;padding-left: 0.5rem !important;background-color: #475569; opacity: 0.7;font-size: 0.9rem;font-weight: 100;}
.nowstate-badge[data-region="불합격"] { background-color: #dc2626; opacity: 0.7;}
.nowstate-badge[data-region="합격"] { background-color: #2563eb; opacity: 0.7;}

.movebtn{position: relative;height: 1px;top: -47px;width:50px !important;height:50px !important;align-content: space-around;opacity: 0.7;}

#mySwiperMain:has(.swiper[style*="display: none"]), #mySwiper2Main:has(.swiper[style*="display: none"]) {
    display: none !important;
}


/* begin: media queries - Bootstrap breakpoint 기준
기본 CSS        → 모바일/공통 기본
max-width: 991.98px -> lg 미만 전체
max-width 575  → xs 전용
min 576~767.98 → sm 전용
min 768~991.98 → md 전용
min 992~1199.98 → lg 전용
min 1200~1399.98 → xl 전용
min 1400 → xxl 전용
*/
@media (max-width: 991.98px) {
    .header-inner { flex-wrap: wrap; gap: 8px 16px; padding: 10px 0; }
    .main-nav { order: 3; width: 100%; overflow-x: auto; }
    .hero-inner { padding-top: 28px; }
    .persona-grid { grid-template-columns: 1fr; }
    .guide-layout { grid-template-columns: 1fr; }
    .role-shortcuts { grid-template-columns: repeat(1, 1fr); }
    .role-shortcut:hover, .role-shortcut:focus-visible, .role-shortcut.is-active {transform: unset;}
    .role-shortcut { min-height: 78px; }
    .role-shortcut small, .role-shortcut .arrow { display: none; }
    .search-form { grid-template-columns: 1fr; }
    .search-field + .search-field { border-left: 0; border-top: 1px solid #e4ece9; }
    .search-submit { min-height: 52px; }
    .job-grid { grid-template-columns: 1fr; }

    .hero {max-height: fit-content}


    body.modal-offcanvas-desktop .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu,#addrecuit, #adderesume, #addassoc, #addeedu, #adderesume),
    .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu) {
        height: calc(100% - 55px) !important;
    }
}

@media (max-width: 575px) {
    .hero-toolbar {flex-direction: column;}
    #infopop1 .list-group, #infopop3 .list-group {min-height:92% !important;justify-content: space-between !important;}
    .infopop1img, .infopop3img {max-width: 54% !important;}
}

@media (min-width: 576px) and (max-width: 767.98px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (min-width: 992px) {
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    body.modal-offcanvas-desktop .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu,#addrecuit, #adderesume, #addassoc, #addeedu, #adderesume),
    .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu) {
        top: calc(34% + 55px) !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        height: auto !important;
        min-height: 552px !important;
        border-radius: 18px !important;
        max-width: calc(100% / 3);
        visibility: visible;
        padding-left:0 !important;
        transform: translate(-50%, -50%) scale(.96) !important;
    }
}

@media (min-width: 1200px) {
    body.modal-offcanvas-desktop .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu,#addrecuit, #adderesume, #addassoc, #addeedu, #adderesume),
    .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu) {
        top: calc(34% + 55px) !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        height: 840px !important;
        min-height: 840px !important;
        border-radius: 18px !important;
        visibility: visible;
        padding-left:0 !important;
        transform: translate(-50%, -50%) scale(.96) !important;
        transition: transform .0s ease-out, opacity .18s ease-out, visibility .0s ease-out !important;
    }
    .infopop1img, .infopop3img {max-width: 84% !important;}
    #infopop1 .swiper-slide, #infopop1 .list-group, #infopop3 .list-group {
        min-height: 588px !important;
        justify-content: space-between !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    body.modal-offcanvas-desktop .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu,#addrecuit, #adderesume, #addassoc, #addeedu, #adderesume),
    .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu) {
        top: calc(40% + 55px) !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        height: 840px !important;
        min-height: 840px !important;
        border-radius: 18px !important;
        visibility: visible;
        padding-left:0 !important;
        transform: translate(-50%, -50%) scale(.96) !important;
        transition: transform .0s ease-out, opacity .18s ease-out, visibility .0s ease-out !important;
    }

    .infopop1img, .infopop3img {max-width: 84% !important;}
    #infopop1 .swiper-slide, #infopop1 .list-group, #infopop3 .list-group {
        min-height: 588px !important;
        justify-content: space-between !important;
    }
}

@media (min-width: 1400px) {
    body.modal-offcanvas-desktop .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu,#addrecuit, #adderesume, #addassoc, #addeedu, #adderesume),
    .offcanvas.offcanvas-bottom:not(#gaoffcanvas, #accesapplication, #resumelistmenu) {
        top: calc(40% + 55px) !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        height: auto !important;
        min-height: 840px !important;
        border-radius: 18px !important;
        visibility: visible;
        padding-left:0 !important;
        transform: translate(-50%, -50%) scale(.96) !important;
        transition: transform .0s ease-out, opacity .18s ease-out, visibility .0s ease-out !important;
    }

    .infopop1img, .infopop3img {max-width: 84% !important;}
    #infopop1 .swiper-slide, #infopop1 .list-group, #infopop3 .list-group {
        min-height: 588px !important;
        justify-content: space-between !important;
    }
    #infopop2 .offcanvas-body ul {height:753px !important;}
}
/* end: media queries */
