      :root{
      --bg: #ffffff;
      --surface: #f7f8fb;
      --text: #121420;
      --muted: #6b7280;
      --line: #e5e7eb;

      /* 레퍼런스 느낌: 소프트 네이비 + 퍼플블루 */
      --navy: #25324a;
      --accent: #6d72f2;
      --accent-2: #9aa0ff;
      --accent-soft: rgba(109,114,242,.10);

      --radius: 18px;
      --radius-lg: 26px;

      --shadow: 0 10px 26px rgba(17, 24, 39, .07);
      --shadow-soft: 0 10px 26px rgba(109,114,242, .10);

      --max: 1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        "Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic", Arial, sans-serif;
      color:var(--text);
      background: linear-gradient(180deg, #fff 0%, #fff 56%, #fbfbfe 100%);
      letter-spacing: -0.01em;
    }

    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 20px}

    /* ===== Header (깔끔/정돈: 3번 레퍼런스) ===== */
    .topbar{
      position:sticky; top:0; z-index:10;
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(229,231,235,.7);
    }
    .topbar .inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight:750;
      letter-spacing:-0.02em;
    }
    .dot{
      width:10px; height:10px; border-radius:999px;
      background: var(--accent);
      box-shadow: 0 0 0 6px var(--accent-soft);
    }
    .nav{
      display:flex; gap:18px;
      font-size:14px;
      color:var(--muted);
    }
    .nav a{padding:8px 10px; border-radius:999px}
    .nav a:hover{background: var(--surface); color: var(--navy)}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:11px 16px;
      border-radius:999px;
      font-weight:650;
      font-size:14px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow: 0 6px 18px rgba(17,24,39,.05);
    }
    .btn.primary{
      border-color: transparent;
      background: var(--accent);
      color:#fff;
      box-shadow: var(--shadow-soft);
    }
    .btn.primary:hover{filter:brightness(.98)}
    .btn.ghost:hover{background:var(--surface)}

    /* ===== Page ===== */
    .page{padding:34px 0 80px}

    /* ===== Hero / Profile (1번 레퍼런스 느낌) ===== */
    .hero{
      display:grid;
      grid-template-columns: 1.45fr .95fr;
      gap:22px;
      align-items:stretch;
      margin-top:10px;
    }
    .card{
      background: #fff;
      border: 1px solid rgba(229,231,235,.9);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }
    .hero-left{padding:26px 26px 24px}
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px;
      color: var(--navy);
      background: var(--accent-soft);
      border: 1px solid rgba(109,114,242,.18);
      padding:8px 12px;
      border-radius: 999px;
      margin-bottom:14px;
    }
    .tag span{
      width:6px; height:6px; border-radius:999px; background: var(--accent);
    }
    h1{
      margin:0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-0.03em;
      color: var(--navy);
    }
    .subtitle{
      margin:10px 0 18px;
      color: var(--muted);
      font-size:15px;
      line-height:1.65;
    }
    .quote{
      margin:18px 0 0;
      padding:18px 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(109,114,242,.10), rgba(109,114,242,.04));
      border:1px solid rgba(109,114,242,.16);
      color: var(--navy);
      position:relative;
      overflow:hidden;
    }
    .quote:before{
      content:"“";
      position:absolute;
      top:-10px; left:12px;
      font-size:64px;
      color: rgba(109,114,242,.25);
      font-weight:800;
      line-height:1;
    }
    .quote p{margin:0; padding-left:18px; font-size:14px; line-height:1.7}
    .meta-grid{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .meta{
      padding:14px 14px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--line);
    }
    .meta .k{font-size:12px; color:var(--muted); margin-bottom:6px}
    .meta .v{font-size:14px; color:var(--text); font-weight:650}

    .hero-right{
      padding:22px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .profile-box{
      display:flex;
      gap:14px;
      align-items:center;
      padding:16px;
      border:1px solid var(--line);
      border-radius: 22px;
      background: #fff;
    }
    .avatar{
      width:78px; height:78px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(109,114,242,.18), rgba(109,114,242,.04));
      border:1px solid rgba(109,114,242,.18);
      overflow:hidden;
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
      position:relative;
    }
    .avatar img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
    }
    .name{
      font-weight:800;
      color: var(--navy);
      letter-spacing:-0.02em;
      margin:0;
      font-size:18px;
    }
    .role{
      margin:4px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .quick{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }
    .pill{
      font-size:12px;
      color: var(--navy);
      border:1px solid rgba(37,50,74,.16);
      background: #fff;
      padding:8px 10px;
      border-radius: 999px;
    }
    .side-card{
      padding:16px 16px;
      border:1px solid var(--line);
      border-radius: 22px;
      background: #fff;
    }
    .side-title{
      font-size:13px;
      color: var(--muted);
      margin:0 0 10px;
      font-weight:650;
    }
    .side-list{
      margin:0; padding:0;
      list-style:none;
      display:grid;
      gap:8px;
      font-size:14px;
    }
    .side-list li{
      display:flex; justify-content:space-between; gap:10px;
      padding:10px 12px;
      border-radius: 14px;
      background: var(--surface);
      border:1px solid rgba(229,231,235,.7);
    }
    .side-list strong{color:var(--navy)}
    .side-list span{color:var(--muted)}

    /* ===== Main Grid (Resume 느낌: 타임라인+스킬 도트) ===== */
    .grid{
      margin-top:22px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:22px;
      align-items:start;
    }
    .section{
      padding:24px;
    }
    .section h2{
      margin:0 0 14px;
      font-size:16px;
      color: var(--navy);
      letter-spacing:-0.02em;
    }
    .subhint{
      margin:-6px 0 16px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    /* Timeline */
    .timeline{
      position:relative;
      padding-left:22px;
      display:grid;
      gap:14px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:7px; top:6px; bottom:6px;
      width:2px;
      background: linear-gradient(180deg, rgba(109,114,242,.55), rgba(109,114,242,.10));
      border-radius: 99px;
    }
    .t-item{
      position:relative;
      padding:14px 14px;
      border:1px solid var(--line);
      border-radius: 18px;
      background:#fff;
    }
    .t-item:before{
      content:"";
      position:absolute;
      left:-22px; top:18px;
      width:12px; height:12px; border-radius:999px;
      background: var(--accent);
      box-shadow: 0 0 0 6px var(--accent-soft);
    }
    .t-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .t-year{
      font-size:12px; color:var(--muted); font-weight:700;
      background: var(--surface);
      border:1px solid rgba(229,231,235,.8);
      padding:6px 10px;
      border-radius: 999px;
      flex:0 0 auto;
      margin-top:2px;
    }
    .t-title{
      margin:0;
      font-weight:800;
      color: var(--navy);
      font-size:14px;
      line-height:1.3;
    }
    .t-desc{
      margin:8px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.65;
    }

    /* Skills (dot gauge) */
    .skills{
      display:grid;
      gap:12px;
    }
    .skill{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border:1px solid var(--line);
      border-radius: 16px;
      background:#fff;
    }
    .skill .label{
      font-size:13px;
      color: var(--navy);
      font-weight:750;
      white-space:nowrap;
    }
    .dots{
      display:flex;
      gap:6px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .dotfill{
      width:8px; height:8px; border-radius:999px;
      background: rgba(37,50,74,.12);
      border:1px solid rgba(37,50,74,.10);
    }
    .dotfill.on{
      background: var(--accent);
      border-color: rgba(109,114,242,.25);
      box-shadow: 0 0 0 5px rgba(109,114,242,.08);
    }

    /* ===== Philosophy / Direction (2번 레퍼런스 느낌) ===== */
    .flow{
      margin-top:22px;
      padding:24px;
      background: linear-gradient(180deg, #fff, #fbfbfe);
      border: 1px solid rgba(229,231,235,.9);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .flow:after{
      content:"";
      position:absolute;
      right:-120px; top:-120px;
      width:260px; height:260px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(109,114,242,.18), rgba(109,114,242,0) 60%);
      pointer-events:none;
    }
    .flow-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .flow-head h2{margin:0; font-size:16px; color:var(--navy)}
    .flow-head p{margin:0; color:var(--muted); font-size:13px}

    .flow-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .flow-card{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 22px;
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .flow-card .mini{
      font-size:12px; color:var(--muted); margin:0 0 8px; font-weight:700;
    }
    .flow-card h3{
      margin:0 0 12px;
      font-size:14px;
      color: var(--navy);
      letter-spacing:-0.02em;
    }

    .list{
      margin:0; padding:0;
      list-style:none;
      display:grid;
      gap:9px;
      color: var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
    }
    .check{
      width:18px; height:18px; border-radius:8px;
      background: var(--accent-soft);
      border:1px solid rgba(109,114,242,.18);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .check:before{
      content:"";
      width:8px; height:8px; border-radius:999px;
      background: var(--accent);
      display:block;
    }

    /* Step path (간단 버전: 번호 + 연결선 느낌) */
    .steps{
      margin-top:14px;
      display:grid;
      gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius: 16px;
      background: var(--surface);
      border:1px solid rgba(229,231,235,.8);
      position:relative;
    }
    .step .num{
      width:28px; height:28px; border-radius:999px;
      background: var(--accent);
      color:#fff;
      font-weight:800;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      box-shadow: 0 0 0 6px rgba(109,114,242,.10);
    }
    .step strong{
      display:block;
      color: var(--navy);
      font-size:13px;
      margin-bottom:4px;
    }
    .step span{
      color: var(--muted);
      font-size:13px;
      line-height:1.55;
      display:block;
    }

    /* ===== Recommended (카드형) ===== */
    .reco{
      margin-top:18px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .reco .rc{
      padding:14px 14px;
      border:1px solid var(--line);
      border-radius: 20px;
      background:#fff;
      min-height:90px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow: 0 8px 18px rgba(17,24,39,.05);
    }
    .rc .ic{
      width:32px; height:32px;
      border-radius: 14px;
      background: var(--accent-soft);
      border:1px solid rgba(109,114,242,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .rc .ic:before{
      content:"";
      width:10px; height:10px; border-radius:999px;
      background: var(--accent);
    }
    .rc p{
      margin:10px 0 0;
      color: var(--navy);
      font-size:13px;
      font-weight:750;
      line-height:1.45;
    }

    /* ===== Footer CTA ===== */
    .cta{
      margin-top:22px;
      padding:22px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(109,114,242,.12), rgba(109,114,242,.05));
      border:1px solid rgba(109,114,242,.16);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
    }
    .cta h3{
      margin:0;
      color: var(--navy);
      font-size:16px;
      letter-spacing:-0.02em;
    }
    .cta p{
      margin:6px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .cta .actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    .hero-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}


    /* ===== Responsive ===== */
    @media (max-width: 980px){
      .hero{grid-template-columns: 1fr}
      .grid{grid-template-columns: 1fr}
      .flow-grid{grid-template-columns: 1fr}
      .reco{grid-template-columns: 1fr 1fr}
      .nav{display:none}
    }
    @media (max-width: 560px){
      h1{font-size:28px}
      .meta-grid{grid-template-columns: 1fr}
      .reco{grid-template-columns: 1fr}
      .cta{flex-direction:column; align-items:flex-start}
      .cta .actions{width:100%; justify-content:flex-start}
    }