<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Office Sapiens Seminar</title>
    <link>https://osemiar.tistory.com/</link>
    <description>Office Sapiens 세미나 페이지 입니다.</description>
    <language>ko</language>
    <pubDate>Sat, 9 May 2026 12:19:37 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>OSS</managingEditor>
    <item>
      <title>The Power Algorithm: 사내 정치학</title>
      <link>https://osemiar.tistory.com/1</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
  /* 본문 내 강조 밑줄 스타일 */
.red-underline {
    position: relative;
    display: inline-block;
    /* [컬러 제안] 세련된 느낌의 레드(#b85c38) 또는 정석 레드(#ff4d4d) */
    text-decoration: none; 
    box-shadow: inset 0 -8px 0 rgba(184, 92, 56, 0.3); /* 형광펜 느낌의 밑줄 */
    padding: 0 2px;
}

/* 조금 더 얇고 선명한 밑줄을 원할 때 */
.red-line {
    border-bottom: 2px solid #b85c38; /* 실선 밑줄 */
    padding-bottom: 2px;
}
  :root {
    color-scheme: dark;
    --bg: #0d0c0a;
    --surface: #141310;
    --card: #1a1815;
    --gold: #c8a96e;
    --gold-dim: #8a7248;
    --gold-bright: #e8c98e;
    --text: #e8e2d8;
    --text-muted: #7a7468;
    --text-dim: #4a4640;
    --accent: #b85c38;
    --border: rgba(200, 169, 110, 0.12);
    --border-bright: rgba(200, 169, 110, 0.3);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

 body {
    /* 변수를 사용하면서 !important를 붙여 티스토리 기본 설정을 무시합니다 */
    background: var(--bg) !important; 
    color: var(--text) !important;
    
     font-family: 'Noto Serif KR', serif;
    font-size: 16px;
    line-height: 1.9;
    overflow-x: hidden;
    
    /* 혹시 모를 여백 문제 방지 */
    margin: 0;
    padding: 0;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url(&quot;data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E&quot;);
    pointer-events: none;
    z-index: 1000;
    opacity: 0.5;
  }

  /* ─── HERO ─────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 중앙 정렬 추가 */
    padding: 120px 40px; /* 패딩 확대 */
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    text-align: center; /* 텍스트 전체 중앙 정렬 */
}

/* 최상단 작은 라벨: 연한 화이트 */
.hero-label {
    color: rgba(232, 226, 216, 0.7) !important;
    font-size: 13px !important;
    margin-bottom: 50px !important; /* 간격 확대 */
    animation: fadeUp 0.8s ease both;
}

/* 킥커: 연한 그레이 */
.hero-kicker {
    font-size: 18px !important;
    color: #b0a898 !important;
    margin-bottom: 30px !important;
    animation: fadeUp 0.8s 0.1s ease both;
}

/* 초대형 메인 타이틀: 화면을 꽉 채우는 스케일 */
.hero-title {
    /* 폰트 이름을 정확히 적어주어야 합니다 */
    font-family: 'Cormorant Garamond', serif !important;
    
    /* 나머지 기존 설정들 */
    font-size: clamp(40px, 12vw, 130px) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 40px !important;
    animation: fadeUp 0.8s 0.2s ease both;
}

/* The Power 부분: 골드 */
.hero-title span.gold {
    color: #e8c98e !important;
}

/* Algorithm 부분: 화이트 + 기울임표 */
.hero-title em.white {
    color: #ffffff !important;
    font-style: italic;
    font-family: 'DM Serif Display', serif !important;
}

/* 중간 설명 슬로건: Pure White로 임팩트 강화 */
.hero-subtitle {
    font-size: clamp(16px, 3vw, 24px) !important; /* 크기 확대 */
    color: #ffffff !important; /* 순백색으로 변경 */
    margin-bottom: 80px !important; /* 간격 대폭 확대 */
    max-width: 800px !important; /* 너비 확대 */
    line-height: 1.7 !important;
    font-weight: 300 !important;
    opacity: 0.95;
    animation: fadeUp 0.8s 0.3s ease both;
}

/* 하단 메타 정보 그룹 */
.hero-meta {
    gap: 60px !important; /* 간격 확대 */
    margin-top: 0 !important;
}

/* 하단 메타 정보 라벨 */
.hero-meta-label {
    color: #c8a96e !important; /* 더 선명한 골드 라벨 */
    font-size: 12px !important;
}

/* 하단 메타 정보 값: 밝은 아이보리 */
.hero-meta-value {
    color: #e8e2d8 !important;
    font-size: 18px !important; /* 크기 확대 */
}
  /* ─── SECTIONS ──────────────────────────────────── */
  .section {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 40px;
    border-bottom: 1px solid var(--border);
  }

  .section-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold-dim);
    margin-bottom: 36px;
    display: block;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 32px;
  }

  .section-title .accent {
    color: var(--gold);
  }

  .section-body {
    color: #b0a898;
    font-size: 15.5px;
    line-height: 2.0;
    font-weight: 300;
  }

  .section-body p + p {
    margin-top: 20px;
  }

  .section-body strong {
    color: var(--text);
    font-weight: 600;
  }

  /* ─── DIVIDER ───────────────────────────────────── */
  .rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0;
  }

  .rule::before,
  .rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .rule-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-dim);
    transform: rotate(45deg);
  }

  /* ─── BADGES ─────────────────────────────────────── */
  .badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .badge {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-left: 2px solid var(--gold-dim);
    background: var(--card);
    transition: border-color 0.2s;
  }

  .badge:hover {
    border-left-color: var(--gold);
    border-color: var(--border-bright);
  }

  .badge-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .badge-content strong {
    display: block;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-family: 'DM Mono', monospace;
  }

  .badge-content span {
    font-size: 14.5px;
    color: #9a9088;
    font-weight: 300;
    line-height: 1.7;
  }

  /* ─── CURRICULUM ─────────────────────────────────── */
  .curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-bottom: none;
    transition: background 0.2s;
  }

  .step:last-child {
    border-bottom: 1px solid var(--border);
  }

  .step:hover {
    background: var(--card);
  }

  .step-num {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--text-dim);
    line-height: 1;
    padding-top: 30px;
  }

  .step-content {
    padding: 28px 28px;
  }

  .step-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }

  .step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .step-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ─── SPEAKER ─────────────────────────────────────── */
  .speaker-intro {
    font-size: 16px;
    color: #b0a898;
    line-height: 2.0;
    font-weight: 300;
    margin-bottom: 48px;
    font-style: italic;
    border-left: 2px solid var(--gold-dim);
    padding-left: 24px;
  }

  .exp-group {
    margin-top: 40px;
  }

  .exp-group-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .exp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .exp-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
  }

  .exp-item:first-child {
    border-top: 1px solid var(--border);
  }

  .exp-role {
    font-size: 14.5px;
    color: var(--text);
    font-weight: 400;
  }

  .exp-role span {
    color: var(--gold-dim);
    margin-right: 8px;
    font-weight: 600;
  }

  .exp-period {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    white-space: nowrap;
  }

  /* ─── CTA ────────────────────────────────────────── */
  .cta-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 40px 120px;
  }

  .cta-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 32px;
  }

  .cta-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 24px;
  }

  .cta-heading em {
    color: var(--gold);
    font-style: italic;
  }

  .cta-body {
    font-size: 15.5px;
    color: #8a8278;
    line-height: 2.0;
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 52px;
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2단 구성으로 더 안정적으로 변경 */
    background: transparent; /* 배경 제거 */
    border-top: 1px solid rgba(200, 169, 110, 0.3); /* 아주 연한 골드 라인 */
    gap: 0;
}

.info-cell {
    background: transparent !important;
    padding: 32px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    /* 왼쪽 칸에만 오른쪽 라인 추가 */
    &amp;:nth-child(odd) { border-right: 1px solid rgba(200, 169, 110, 0.15); padding-right: 20px; }
    &amp;:nth-child(even) { padding-left: 40px; }
}

.info-cell-label {
    color: #c8a96e; /* 라벨을 골드 포인트로 */
    font-weight: 600;
    margin-bottom: 12px;
}

.info-cell-value {
    font-size: 17px; /* 텍스트 크기 살짝 키움 */
    color: #e8e2d8;
}

.솔직히 말씀드리면, 지금 상태는 '세련된 블랙' 컨셉과는 거리가 멉니다. 밝은 베이지 바탕에 연한 하늘색 글씨는 눈이 아플 정도로 가독성이 떨어지고, 정돈되지 않은 느낌을 주네요.

강연의 주제인 **'The Power Algorithm'**의 묵직하고 고급스러운 분위기를 살릴 수 있도록, 불필요한 색을 걷어내고 명확한 대비와 여백을 주어 전면 수정해 보겠습니다.

1. 세련된 블랙 &amp; 골드 스타일 (CSS)
기존의 촌스러운 색 조합을 버리고, 깊은 차콜 블랙 배경에 골드 포인트를 활용한 전문가용 스타일입니다.

CSS
/* 버튼 스타일: 불필요한 색상을 제거하고 명확하게 수정 */
.물론입니다. 직선 위주의 디자인에서 **부드러운 라운드(곡선)**를 살짝 섞어주면, 훨씬 여유롭고 세련된 느낌을 줄 수 있습니다.

다만, 전체적인 톤이 'The Power Algorithm'이라는 묵직한 주제인 만큼, 너무 둥근 원형보다는 **고급 수트의 어깨선처럼 절제된 라운드(border-radius: 4px~8px)**를 추천드려요.

1. 라운드 박스 적용 및 컬러 최적화 (CSS)
기존 .cta-btn과 .cta-btn:hover 부분을 아래 코드로 교체해 보세요. 마우스를 올렸을 때만 곡률이 생기게 하거나, 처음부터 부드럽게 유지할 수 있습니다.

CSS
.cta-final-group {
    display: block !important;
    width: 100% !important;
    text-align: center !important; /* 내부의 모든 요소를 가로 중앙으로 */
    margin: 120px 0 60px !important; /* 표와의 간격을 120px로 확실히 벌림 */
    padding: 0 !important;
    clear: both !important;
}

.cta-note-new {
    display: block !important;
    font-size: 14px !important;
    color: #7a7468 !important;
    margin: 0 auto 30px !important; /* 아래 버튼과의 간격 */
    text-align: center !important;
    width: 100% !important;
}

.cta-btn-new {
    /* inline-block으로 설정해야 부모의 text-align: center가 먹힙니다 */
    display: inline-block !important; 
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border-radius: 50px !important; 
    padding: 15px 50px !important;
    font-family: 'Noto Serif KR', serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    /* 버튼 너비가 100%가 되지 않도록 방지 */
    width: auto !important; 
}

.cta-btn-new:hover {
    background-color: #e8c98e !important;
    color: #000000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(200, 169, 110, 0.3) !important;
    border-radius: 50px !important;
}
  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

  /* ─── ANIMATIONS ─────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ─────────────────────────────────── */
  @media (max-width: 600px) {
    .hero { padding: 60px 24px 50px; }
    .section { padding: 72px 24px; }
    .cta-section { padding: 72px 24px 100px; }
    .step { grid-template-columns: 60px 1fr; }
    .step-num { font-size: 24px; padding: 24px 16px; }
    .hero-meta { gap: 24px; }
    footer { padding: 24px; }
  }
&lt;/style&gt;
&lt;/div&gt;
&lt;!-- HERO --&gt;
&lt;section class=&quot;hero&quot;&gt;
&lt;div class=&quot;hero-label&quot;&gt;Beta Session &amp;middot; Limited to 5&lt;/div&gt;
&lt;p class=&quot;hero-kicker&quot; data-ke-size=&quot;size16&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;사내 정치, 괴물이 되지 않고도 승리하는 생존의 법칙&lt;/span&gt;&lt;/p&gt;
&lt;h1 class=&quot;hero-title&quot;&gt;&lt;span class=&quot;gold&quot;&gt;The Power&lt;/span&gt;&lt;br /&gt;&lt;i&gt;Algorithm&lt;/i&gt;&lt;/h1&gt;
&lt;p class=&quot;hero-subtitle&quot; data-ke-size=&quot;size16&quot;&gt;일만 잘하면 된다는 믿음이 당신의 성장을 가로막고 있다면,&lt;br /&gt;이제 조직이라는 부족의 무언의 규칙을 읽을 시간입니다.&lt;/p&gt;
&lt;div class=&quot;hero-meta&quot;&gt;
&lt;div class=&quot;hero-meta-item&quot;&gt;&lt;span class=&quot;hero-meta-label&quot;&gt;Date&lt;/span&gt; &lt;span class=&quot;hero-meta-value&quot;&gt;2026.04.03(Fri) 19:30~21:00&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;hero-meta-item&quot;&gt;&lt;span class=&quot;hero-meta-label&quot;&gt;Venue&lt;/span&gt; &lt;span class=&quot;hero-meta-value&quot;&gt;스파크플러스 역삼2호점&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;hero-meta-item&quot;&gt;&lt;span class=&quot;hero-meta-label&quot;&gt;Fee&lt;/span&gt; &lt;span class=&quot;hero-meta-value&quot;&gt;무료 (Beta)&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;hero-meta-item&quot;&gt;&lt;span class=&quot;hero-meta-label&quot;&gt;Seats&lt;/span&gt; &lt;span class=&quot;hero-meta-value&quot;&gt;선착순 5인&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- 01 --&gt;
&lt;section class=&quot;section reveal&quot;&gt;&lt;span class=&quot;section-num&quot;&gt;01 &amp;mdash; PREMISE&lt;/span&gt;
&lt;h2 class=&quot;section-title&quot; data-ke-size=&quot;size26&quot;&gt;착한 사람들의&lt;br /&gt;&lt;span class=&quot;accent&quot;&gt;치명적인 착각&lt;/span&gt;&lt;/h2&gt;
&lt;div class=&quot;section-body&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;일만 잘하면 된다는 믿음, 그 순진함이 성장을 가로막고 있지는 않나요?&lt;/span&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;회사는 이성적인 기계가 아닙니다. 본능이 살아 숨 쉬는 &lt;b&gt;사바나&lt;/b&gt;입니다. 우리가 흔히 '정치'라 부르는 것은 사실, 사피엔스가 집단 속에서 살아남기 위해 진화시켜 온 가장 고도화된 소통 방식입니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이 메커니즘을 모르면, 당신의 실력은 무력해집니다. &lt;b&gt;오피스 사피엔스의 눈으로 조직의 생리를 다시 읽어야 하는 이유&lt;/b&gt;가 여기에 있습니다.&lt;/p&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- 02 --&gt;
&lt;section class=&quot;section reveal&quot;&gt;&lt;span class=&quot;section-num&quot;&gt;02 &amp;mdash; APPROACH&lt;/span&gt;
&lt;h2 class=&quot;section-title&quot; data-ke-size=&quot;size26&quot;&gt;누구나 말하지만&lt;br /&gt;&lt;span class=&quot;accent&quot;&gt;아무도 가르쳐주지 않은&lt;/span&gt;&lt;br /&gt;관계의 지도&lt;/h2&gt;
&lt;div class=&quot;section-body&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;시중의 뻔한 처세술이 아닙니다.&lt;/span&gt; &lt;br /&gt;인류학, 심리학, 경영 전략의 고전이 증명하는 본질적인 메커니즘을 다룹니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;16년간 쌓아온 HR 현장 데이터는, 이 이론들이 실제 조직에서 어떻게 작동하는지를 보여주는 가장 강력한 주석이 될 것입니다.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;rule&quot;&gt;
&lt;div class=&quot;rule-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;badges&quot;&gt;
&lt;div class=&quot;badge&quot;&gt;
&lt;div class=&quot;badge-icon&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;badge-content&quot;&gt;&lt;b&gt;Exclusive Insight&lt;/b&gt; &lt;span&gt;검증된 고전의 이론과 최전선 스타트업의 사례가 결합된 독보적인 통찰입니다.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;badge&quot;&gt;
&lt;div class=&quot;badge-icon&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;badge-content&quot;&gt;&lt;b&gt;Beta Session&lt;/b&gt; &lt;span&gt;정식 런칭 전, 콘텐츠의 깊이를 직접 확인하는 소수 정예 강연입니다.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;badge&quot;&gt;
&lt;div class=&quot;badge-icon&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;badge-content&quot;&gt;&lt;b&gt;Free Pass&lt;/b&gt; &lt;span&gt;베타 세션 기간에 한해 별도의 비용 없이 무료로 진행됩니다.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;badge&quot;&gt;
&lt;div class=&quot;badge-icon&quot;&gt;✋&lt;/div&gt;
&lt;div class=&quot;badge-content&quot;&gt;&lt;b&gt;Limited 5&lt;/b&gt; &lt;span&gt;밀도 높은 논의를 위해 선착순 5인만 모십니다.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- 03 --&gt;
&lt;section class=&quot;section reveal&quot;&gt;&lt;span class=&quot;section-num&quot;&gt;03 &amp;mdash; CURRICULUM&lt;/span&gt;
&lt;h2 class=&quot;section-title&quot; data-ke-size=&quot;size26&quot;&gt;무엇을&lt;br /&gt;&lt;span class=&quot;accent&quot;&gt;얻어가는가&lt;/span&gt;&lt;/h2&gt;
&lt;div class=&quot;section-body&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;각 세션은 역사, 진화심리학, 경영 이론을 현장 사례에 연결합니다.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;curriculum&quot; style=&quot;margin-top: 36px;&quot;&gt;
&lt;div class=&quot;step&quot;&gt;
&lt;div class=&quot;step-num&quot;&gt;I&lt;/div&gt;
&lt;div class=&quot;step-content&quot;&gt;&lt;span class=&quot;step-tag&quot;&gt;사바나의 본능&lt;/span&gt;
&lt;div class=&quot;step-title&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;왜 우리는 정치를 혐오하면서도 피할 수 없는가&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;step-desc&quot;&gt;지위 게임의 진화적 기원 &amp;mdash; 혐오감의 정체를 해부합니다&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;step&quot;&gt;
&lt;div class=&quot;step-num&quot;&gt;II&lt;/div&gt;
&lt;div class=&quot;step-content&quot;&gt;&lt;span class=&quot;step-tag&quot;&gt;부족의 서열&lt;/span&gt;
&lt;div class=&quot;step-title&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;리더의 뇌는 무엇에 반응하는가&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;step-desc&quot;&gt;필수 연합군의 구조와 충성의 역학 &amp;mdash; 신뢰는 어떻게 설계되는가&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;step&quot;&gt;
&lt;div class=&quot;step-num&quot;&gt;III&lt;/div&gt;
&lt;div class=&quot;step-content&quot;&gt;&lt;span class=&quot;step-tag&quot;&gt;제국의 설계&lt;/span&gt;
&lt;div class=&quot;step-title&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;옥타비아누스는 어떻게 힘을 숨기고 질서를 만들었나&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;step-desc&quot;&gt;시스템 설계의 기술 &amp;mdash; 보이지 않는 권력은 어떻게 작동하는가&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;step&quot;&gt;
&lt;div class=&quot;step-num&quot;&gt;IV&lt;/div&gt;
&lt;div class=&quot;step-content&quot;&gt;&lt;span class=&quot;step-tag&quot;&gt;영민한 사피엔스&lt;/span&gt;
&lt;div class=&quot;step-title&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;괴물이 되지 않고도 조직의 질서를 주도하는 법&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;step-desc&quot;&gt;실력자의 태도 &amp;mdash; 전략과 품위는 어떻게 공존하는가&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- 04 --&gt;
&lt;section class=&quot;section reveal&quot;&gt;&lt;span class=&quot;section-num&quot;&gt;04 &amp;mdash; SPEAKER&lt;/span&gt;
&lt;h2 class=&quot;section-title&quot; data-ke-size=&quot;size26&quot;&gt;관찰자의&lt;br /&gt;&lt;span class=&quot;accent&quot;&gt;증언&lt;/span&gt;&lt;/h2&gt;
&lt;p class=&quot;speaker-intro&quot; data-ke-size=&quot;size16&quot;&gt;저는 누군가를 가르치려는 사람이 아닙니다.&lt;br /&gt;이론이 현장에서 어떻게 무너지고, 또 어떻게 승리하는지 지켜본 관찰자입니다.&lt;/p&gt;
&lt;div class=&quot;section-body&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;16년 동안 카카오, 당근, 엔씨 등 대한민국에서 가장 치열한 조직들을 거치며, 고전이 말하는 &lt;span class=&quot;red-line&quot;&gt;'정치의 법칙'이 현실에서 어떻게 작동하는지 목격했습니다.&lt;/span&gt; 그 생생한 연결 고리를 공유합니다.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-group reveal&quot;&gt;
&lt;div class=&quot;exp-group-title&quot;&gt;Experience&lt;/div&gt;
&lt;div class=&quot;exp-list&quot;&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;앳홈&lt;/span&gt;Head of HR&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2024.03 &amp;ndash; 2026.03&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;당근&lt;/span&gt;Head of HR&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2021.04 &amp;ndash; 2024.03&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;클래스팅&lt;/span&gt;Head of HR&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2020.10 &amp;ndash; 2021.04&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;엔씨소프트&lt;/span&gt;Sr. Recruiting Manager&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2019.08 &amp;ndash; 2020.10&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;카카오&lt;/span&gt;Recruiting Manager&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2015.07 &amp;ndash; 2019.09&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;다음카카오&lt;/span&gt;Culture &amp;amp; Growth Manager&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2013.07 &amp;ndash; 2015.06&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;다음&lt;/span&gt;Biz Strategy Manager&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2011.01 &amp;ndash; 2013.06&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-group reveal&quot;&gt;
&lt;div class=&quot;exp-group-title&quot; style=&quot;margin-top: 40px;&quot;&gt;Education&lt;/div&gt;
&lt;div class=&quot;exp-list&quot;&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;서울사이버대학교 대학원&lt;/span&gt;임상 및 상담심리 석사&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2021&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;exp-item&quot;&gt;
&lt;div class=&quot;exp-role&quot;&gt;&lt;span&gt;연세대학교&lt;/span&gt;국어국문학 학사&lt;/div&gt;
&lt;div class=&quot;exp-period&quot;&gt;2011&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;!-- CTA --&gt;
&lt;section class=&quot;cta-section reveal&quot;&gt;
&lt;div class=&quot;cta-eyebrow&quot;&gt;05 &amp;mdash; Apply Now&lt;/div&gt;
&lt;h2 class=&quot;cta-heading&quot; data-ke-size=&quot;size26&quot;&gt;지금 당신의 실력에&lt;br /&gt;&lt;span style=&quot;color: #c8a96e; font-weight: bold;&quot;&gt;'전략'&lt;/span&gt;이라는 갑옷을&lt;br /&gt;입히세요.&lt;/h2&gt;
&lt;p class=&quot;cta-body&quot; data-ke-size=&quot;size16&quot;&gt;&lt;span class=&quot;red-line&quot;&gt;지금 겪고 있는 좌절은 실력이 부족해서가 아닙니다.&lt;/span&gt; &lt;br /&gt;단지 조직이라는 부족의 무언의 규칙을 읽지 못했을 뿐입니다. &lt;br /&gt;단 다섯 분에게만 그 마스터 키를 공유합니다.&lt;/p&gt;
&lt;div class=&quot;info-grid&quot;&gt;
&lt;div class=&quot;info-cell&quot;&gt;&lt;span class=&quot;info-cell-label&quot;&gt;일시&lt;/span&gt;
&lt;div class=&quot;info-cell-value&quot;&gt;26.04.03(Fri) 19:30~21:00&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;info-cell&quot;&gt;&lt;span class=&quot;info-cell-label&quot;&gt;장소&lt;/span&gt;
&lt;div class=&quot;info-cell-value&quot;&gt;스파크플러스 역삼2호점&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;info-cell&quot;&gt;&lt;span class=&quot;info-cell-label&quot;&gt;비용&lt;/span&gt;
&lt;div class=&quot;info-cell-value&quot;&gt;무료 (베타 세션)&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;info-cell&quot;&gt;&lt;span class=&quot;info-cell-label&quot;&gt;인원&lt;/span&gt;
&lt;div class=&quot;info-cell-value&quot;&gt;선착순 5인&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;cta-final-group&quot; style=&quot;text-align: center !important; width: 100% !important; display: block !important;&quot;&gt;
&lt;p class=&quot;cta-note-new&quot; style=&quot;text-align: center !important;&quot; data-ke-size=&quot;size16&quot;&gt;* 신청 후 개별 확인 연락을 드립니다&lt;/p&gt;
&lt;a class=&quot;cta-btn-new&quot; style=&quot;margin: 0 auto !important;&quot; href=&quot;https://forms.gle/RxYcz4zCNseV8D2U8&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt; -마감- &lt;/a&gt;&lt;/div&gt;
&lt;/section&gt;
&lt;footer&gt;The Power Algorithm &amp;mdash; Beta Session &amp;nbsp;&amp;middot;&amp;nbsp; 2026&lt;/footer&gt;
&lt;script&gt;
  const observer = new IntersectionObserver(
    entries =&gt; entries.forEach(e =&gt; { if (e.isIntersecting) e.target.classList.add('visible'); }),
    { threshold: 0.1 }
  );
  document.querySelectorAll('.reveal').forEach(el =&gt; observer.observe(el));
&lt;/script&gt;</description>
      <author>OSS</author>
      <guid isPermaLink="true">https://osemiar.tistory.com/1</guid>
      <comments>https://osemiar.tistory.com/1#entry1comment</comments>
      <pubDate>Mon, 23 Mar 2026 18:49:16 +0900</pubDate>
    </item>
  </channel>
</rss>